#include <EEHltTask.h>
Definition at line 28 of file EEHltTask.h.
EEHltTask::EEHltTask | ( | const edm::ParameterSet & | ps | ) |
Constructor.
Definition at line 32 of file EEHltTask.cc.
References dqmStore_, EcalElectronicsIdCollection1_, EcalElectronicsIdCollection2_, EcalElectronicsIdCollection3_, EcalElectronicsIdCollection4_, EcalElectronicsIdCollection5_, EcalElectronicsIdCollection6_, EEDetIdCollection0_, EEDetIdCollection1_, EEDetIdCollection2_, EEDetIdCollection3_, enableCleanup_, FEDRawDataCollection_, folderName_, edm::ParameterSet::getParameter(), edm::ParameterSet::getUntrackedParameter(), init_, initGeometry_, map, meEEFedsIntegrityErrors_, meEEFedsOccupancy_, meEEFedsSizeErrors_, mergeRuns_, cppFunctionSkipper::operator, prefixME_, and AlCaHLTBitMon_QueryRunRegistry::string.
{ init_ = false; initGeometry_ = false; dqmStore_ = edm::Service<DQMStore>().operator->(); prefixME_ = ps.getUntrackedParameter<std::string>("prefixME", ""); folderName_ = ps.getUntrackedParameter<std::string>("folderName", "FEDIntegrity"); enableCleanup_ = ps.getUntrackedParameter<bool>("enableCleanup", false); mergeRuns_ = ps.getUntrackedParameter<bool>("mergeRuns", false); EEDetIdCollection0_ = ps.getParameter<edm::InputTag>("EEDetIdCollection0"); EEDetIdCollection1_ = ps.getParameter<edm::InputTag>("EEDetIdCollection1"); EEDetIdCollection2_ = ps.getParameter<edm::InputTag>("EEDetIdCollection2"); EEDetIdCollection3_ = ps.getParameter<edm::InputTag>("EEDetIdCollection3"); EcalElectronicsIdCollection1_ = ps.getParameter<edm::InputTag>("EcalElectronicsIdCollection1"); EcalElectronicsIdCollection2_ = ps.getParameter<edm::InputTag>("EcalElectronicsIdCollection2"); EcalElectronicsIdCollection3_ = ps.getParameter<edm::InputTag>("EcalElectronicsIdCollection3"); EcalElectronicsIdCollection4_ = ps.getParameter<edm::InputTag>("EcalElectronicsIdCollection4"); EcalElectronicsIdCollection5_ = ps.getParameter<edm::InputTag>("EcalElectronicsIdCollection5"); EcalElectronicsIdCollection6_ = ps.getParameter<edm::InputTag>("EcalElectronicsIdCollection6"); FEDRawDataCollection_ = ps.getParameter<edm::InputTag>("FEDRawDataCollection"); meEEFedsOccupancy_ = 0; meEEFedsSizeErrors_ = 0; meEEFedsIntegrityErrors_ = 0; map = 0; }
EEHltTask::~EEHltTask | ( | ) | [virtual] |
void EEHltTask::analyze | ( | const edm::Event & | e, |
const edm::EventSetup & | c | ||
) | [protected, virtual] |
Analyze.
Implements edm::EDAnalyzer.
Definition at line 155 of file EEHltTask.cc.
References FEDRawData::data(), EcalElectronicsIdCollection1_, EcalElectronicsIdCollection2_, EcalElectronicsIdCollection3_, EcalElectronicsIdCollection4_, EcalElectronicsIdCollection5_, EcalElectronicsIdCollection6_, EcalEndcap, EEDetIdCollection0_, EEDetIdCollection1_, EEDetIdCollection2_, EEDetIdCollection3_, FEDRawDataCollection_, MonitorElement::Fill(), edm::Event::getByLabel(), i, ievt_, init_, iSM(), ecalpyutils::ism(), meEEFedsIntegrityErrors_, meEEFedsOccupancy_, meEEFedsSizeErrors_, setup(), FEDRawData::size(), and subDet().
{ if ( ! init_ ) this->setup(); ievt_++; // ECAL endcap FEDs int EEFirstFED[2]; EEFirstFED[0] = 601; // EE- EEFirstFED[1] = 646; // EE+ int FedsSizeErrors[18]; for ( int i=0; i<18; i++ ) FedsSizeErrors[i]=0; edm::Handle<EEDetIdCollection> ids0; if ( e.getByLabel(EEDetIdCollection0_, ids0) ) { for ( EEDetIdCollection::const_iterator idItr = ids0->begin(); idItr != ids0->end(); ++idItr ) { int ism = iSM( *idItr ); if ( ism > -1 ) FedsSizeErrors[ism-1]++; } } else { // edm::LogWarning("EEHltTask") << EEDetIdCollection0_ << " not available"; } edm::Handle<FEDRawDataCollection> allFedRawData; if ( e.getByLabel(FEDRawDataCollection_, allFedRawData) ) { for(int zside=0; zside<2; zside++) { int firstFedOnSide=EEFirstFED[zside]; for ( int ism=1; ism<=9; ism++ ) { const FEDRawData& fedData = allFedRawData->FEDData( firstFedOnSide + ism - 1 ); int length = fedData.size()/sizeof(uint64_t); if ( length > 0 ) { if ( meEEFedsOccupancy_ ) meEEFedsOccupancy_->Fill( firstFedOnSide + ism - 1 ); uint64_t * pData = (uint64_t *)(fedData.data()); uint64_t * fedTrailer = pData + (length - 1); bool crcError = (*fedTrailer >> 2 ) & 0x1; if (crcError) FedsSizeErrors[ism-1]++; } } } } else { edm::LogWarning("EEHltTask") << FEDRawDataCollection_ << " not available"; } for( int ism=1; ism<=18; ism++ ) { if ( FedsSizeErrors[ism-1] != 0 ) { int fednumber = ( ism < 10 ) ? 600 + ism : 636 + ism; if ( meEEFedsSizeErrors_ ) meEEFedsSizeErrors_->Fill( fednumber ); } } // Integrity errors edm::Handle<EEDetIdCollection> ids1; if ( e.getByLabel(EEDetIdCollection1_, ids1) ) { for ( EEDetIdCollection::const_iterator idItr = ids1->begin(); idItr != ids1->end(); ++idItr ) { int ism = iSM( *idItr ); int fednumber = ( ism < 10 ) ? 600 + ism : 636 + ism; if ( ism > -1 ) meEEFedsIntegrityErrors_->Fill( fednumber, 1./850.); } } else { edm::LogWarning("EEHltTask") << EEDetIdCollection1_ << " not available"; } edm::Handle<EEDetIdCollection> ids2; if ( e.getByLabel(EEDetIdCollection2_, ids2) ) { for ( EEDetIdCollection::const_iterator idItr = ids2->begin(); idItr != ids2->end(); ++idItr ) { int ism = iSM( *idItr ); int fednumber = ( ism < 10 ) ? 600 + ism : 636 + ism; if ( ism > -1 ) meEEFedsIntegrityErrors_->Fill( fednumber, 1./850.); } } else { edm::LogWarning("EEHltTask") << EEDetIdCollection2_ << " not available"; } edm::Handle<EEDetIdCollection> ids3; if ( e.getByLabel(EEDetIdCollection3_, ids3) ) { for ( EEDetIdCollection::const_iterator idItr = ids3->begin(); idItr != ids3->end(); ++idItr ) { int ism = iSM( *idItr ); int fednumber = ( ism < 10 ) ? 600 + ism : 636 + ism; if ( ism > -1 ) meEEFedsIntegrityErrors_->Fill( fednumber, 1./850.); } } else { edm::LogWarning("EEHltTask") << EEDetIdCollection3_ << " not available"; } edm::Handle<EcalElectronicsIdCollection> ids4; if ( e.getByLabel(EcalElectronicsIdCollection1_, ids4) ) { for ( EcalElectronicsIdCollection::const_iterator idItr = ids4->begin(); idItr != ids4->end(); ++idItr ) { if ( subDet( *idItr ) != EcalEndcap ) continue; int ism = iSM( *idItr ); int fednumber = ( ism < 10 ) ? 600 + ism : 636 + ism; if ( ism > -1 ) meEEFedsIntegrityErrors_->Fill( fednumber, 1./34.); } } else { edm::LogWarning("EEHltTask") << EcalElectronicsIdCollection1_ << " not available"; } edm::Handle<EcalElectronicsIdCollection> ids5; if ( e.getByLabel(EcalElectronicsIdCollection2_, ids5) ) { for ( EcalElectronicsIdCollection::const_iterator idItr = ids5->begin(); idItr != ids5->end(); ++idItr ) { if ( subDet( *idItr ) != EcalEndcap ) continue; int ism = iSM( *idItr ); int fednumber = ( ism < 10 ) ? 600 + ism : 636 + ism; if ( ism > -1 ) meEEFedsIntegrityErrors_->Fill( fednumber, 1./850.); } } else { edm::LogWarning("EEHltTask") << EcalElectronicsIdCollection2_ << " not available"; } edm::Handle<EcalElectronicsIdCollection> ids6; if ( e.getByLabel(EcalElectronicsIdCollection3_, ids6) ) { for ( EcalElectronicsIdCollection::const_iterator idItr = ids6->begin(); idItr != ids6->end(); ++idItr ) { if ( subDet( *idItr ) != EcalEndcap ) continue; int ism = iSM( *idItr ); int fednumber = ( ism < 10 ) ? 600 + ism : 636 + ism; if ( ism > -1 ) meEEFedsIntegrityErrors_->Fill( fednumber, 1./34.); } } else { edm::LogWarning("EEHltTask") << EcalElectronicsIdCollection3_ << " not available"; } edm::Handle<EcalElectronicsIdCollection> ids7; if ( e.getByLabel(EcalElectronicsIdCollection4_, ids7) ) { for ( EcalElectronicsIdCollection::const_iterator idItr = ids7->begin(); idItr != ids7->end(); ++idItr ) { if ( subDet( *idItr ) != EcalEndcap ) continue; int ism = iSM( *idItr ); int fednumber = ( ism < 10 ) ? 600 + ism : 636 + ism; if ( ism > -1 ) meEEFedsIntegrityErrors_->Fill( fednumber, 1./850.); } } else { edm::LogWarning("EEHltTask") << EcalElectronicsIdCollection4_ << " not available"; } edm::Handle<EcalElectronicsIdCollection> ids8; if ( e.getByLabel(EcalElectronicsIdCollection5_, ids8) ) { for ( EcalElectronicsIdCollection::const_iterator idItr = ids8->begin(); idItr != ids8->end(); ++idItr ) { if ( subDet( *idItr ) != EcalEndcap ) continue; int ism = iSM( *idItr ); int fednumber = ( ism < 10 ) ? 600 + ism : 636 + ism; if ( ism > -1 ) meEEFedsIntegrityErrors_->Fill( fednumber, 1./850.); } } else { edm::LogWarning("EEHltTask") << EcalElectronicsIdCollection5_ << " not available"; } edm::Handle<EcalElectronicsIdCollection> ids9; if ( e.getByLabel(EcalElectronicsIdCollection6_, ids9) ) { for ( EcalElectronicsIdCollection::const_iterator idItr = ids9->begin(); idItr != ids9->end(); ++idItr ) { if ( subDet( *idItr ) != EcalEndcap ) continue; int ism = iSM( *idItr ); int fednumber = ( ism < 10 ) ? 600 + ism : 636 + ism; if ( ism > -1 ) meEEFedsIntegrityErrors_->Fill( fednumber, 1./850.); } } else { edm::LogWarning("EEHltTask") << EcalElectronicsIdCollection6_ << " not available"; } }
void EEHltTask::beginJob | ( | void | ) | [protected, virtual] |
BeginJob.
Reimplemented from edm::EDAnalyzer.
Definition at line 72 of file EEHltTask.cc.
References dqmStore_, folderName_, ievt_, prefixME_, DQMStore::rmdir(), and DQMStore::setCurrentFolder().
{ ievt_ = 0; if ( dqmStore_ ) { dqmStore_->setCurrentFolder(prefixME_ + "/" + folderName_); dqmStore_->rmdir(prefixME_ + "/" + folderName_); } }
void EEHltTask::beginRun | ( | const edm::Run & | r, |
const edm::EventSetup & | c | ||
) | [protected, virtual] |
BeginRun.
Reimplemented from edm::EDAnalyzer.
Definition at line 83 of file EEHltTask.cc.
References initGeometry(), mergeRuns_, and reset().
{ initGeometry(c); if ( ! mergeRuns_ ) this->reset(); }
void EEHltTask::cleanup | ( | void | ) | [protected] |
Cleanup.
Definition at line 125 of file EEHltTask.cc.
References dqmStore_, folderName_, MonitorElement::getName(), init_, meEEFedsIntegrityErrors_, meEEFedsOccupancy_, meEEFedsSizeErrors_, prefixME_, DQMStore::removeElement(), and DQMStore::setCurrentFolder().
Referenced by endJob().
{ if ( ! init_ ) return; if ( dqmStore_ ) { dqmStore_->setCurrentFolder(prefixME_ + "/" + folderName_); if ( meEEFedsOccupancy_ ) dqmStore_->removeElement( meEEFedsOccupancy_->getName() ); meEEFedsOccupancy_ = 0; if ( meEEFedsSizeErrors_ ) dqmStore_->removeElement( meEEFedsSizeErrors_->getName() ); meEEFedsSizeErrors_ = 0; if ( meEEFedsIntegrityErrors_ ) dqmStore_->removeElement( meEEFedsIntegrityErrors_->getName() ); meEEFedsIntegrityErrors_ = 0; } init_ = false; }
void EEHltTask::endJob | ( | void | ) | [protected, virtual] |
EndJob.
Reimplemented from edm::EDAnalyzer.
Definition at line 147 of file EEHltTask.cc.
References cleanup(), enableCleanup_, and ievt_.
{ edm::LogInfo("EEHltTask") << "analyzed " << ievt_ << " events"; if ( enableCleanup_ ) this->cleanup(); }
void EEHltTask::endRun | ( | const edm::Run & | r, |
const edm::EventSetup & | c | ||
) | [protected, virtual] |
void EEHltTask::initGeometry | ( | const edm::EventSetup & | setup | ) | [protected] |
Definition at line 423 of file EEHltTask.cc.
References edm::EventSetup::get(), patZpeak::handle, initGeometry_, map, and edm::ESHandle< T >::product().
Referenced by beginRun().
{ if( initGeometry_ ) return; initGeometry_ = true; edm::ESHandle< EcalElectronicsMapping > handle; setup.get< EcalMappingRcd >().get(handle); map = handle.product(); if( ! map ) edm::LogWarning("EEHltTask") << "EcalElectronicsMapping not available"; }
int EEHltTask::iSM | ( | const EcalElectronicsId & | id | ) | [protected] |
Definition at line 455 of file EEHltTask.cc.
{ int idcc = id.dccId(); // EE- if( idcc >= 1 && idcc <= 9 ) return( idcc ); // EE+ if( idcc >= 46 && idcc <= 54 ) return( idcc - 45 + 9 ); edm::LogWarning("EEHltTask") << "Wrong DCC id: dcc = " << idcc; return -1; }
int EEHltTask::iSM | ( | const EEDetId & | id | ) | [protected] |
Definition at line 437 of file EEHltTask.cc.
References EcalElectronicsId::dccId(), EcalElectronicsMapping::getElectronicsId(), and map.
Referenced by analyze().
{ if( ! map ) return -1; EcalElectronicsId eid = map->getElectronicsId(id); int idcc = eid.dccId(); // EE- if( idcc >= 1 && idcc <= 9 ) return( idcc ); // EE+ if( idcc >= 46 && idcc <= 54 ) return( idcc - 45 + 9 ); edm::LogWarning("EEHltTask") << "Wrong DCC id: dcc = " << idcc; return -1; }
void EEHltTask::reset | ( | void | ) | [protected] |
Reset.
Definition at line 95 of file EEHltTask.cc.
References meEEFedsIntegrityErrors_, meEEFedsOccupancy_, meEEFedsSizeErrors_, and MonitorElement::Reset().
Referenced by beginRun().
{ if ( meEEFedsOccupancy_ ) meEEFedsOccupancy_->Reset(); if ( meEEFedsSizeErrors_ ) meEEFedsSizeErrors_->Reset(); if ( meEEFedsIntegrityErrors_ ) meEEFedsIntegrityErrors_->Reset(); }
void EEHltTask::setup | ( | void | ) | [protected] |
Setup.
Definition at line 103 of file EEHltTask.cc.
References DQMStore::book1D(), dqmStore_, folderName_, init_, meEEFedsIntegrityErrors_, meEEFedsOccupancy_, meEEFedsSizeErrors_, mergeVDriftHistosByStation::name, prefixME_, DQMStore::setCurrentFolder(), and AlCaHLTBitMon_QueryRunRegistry::string.
Referenced by analyze().
{ init_ = true; std::string name; if ( dqmStore_ ) { dqmStore_->setCurrentFolder(prefixME_ + "/" + folderName_); name = "FEDEntries"; meEEFedsOccupancy_ = dqmStore_->book1D(name, name, 54, 601, 655); name = "FEDFatal"; meEEFedsSizeErrors_ = dqmStore_->book1D(name, name, 54, 601, 655); name = "FEDNonFatal"; meEEFedsIntegrityErrors_ = dqmStore_->book1D(name, name, 54, 601, 655); } }
EcalSubdetector EEHltTask::subDet | ( | const EEDetId & | id | ) | [inline, protected] |
EcalSubdetector EEHltTask::subDet | ( | const EcalElectronicsId & | id | ) | [inline, protected] |
Definition at line 68 of file EEHltTask.h.
{ return( id.subdet() ); }
DQMStore* EEHltTask::dqmStore_ [private] |
Definition at line 78 of file EEHltTask.h.
Referenced by beginJob(), cleanup(), EEHltTask(), and setup().
Definition at line 92 of file EEHltTask.h.
Referenced by analyze(), and EEHltTask().
Definition at line 93 of file EEHltTask.h.
Referenced by analyze(), and EEHltTask().
Definition at line 94 of file EEHltTask.h.
Referenced by analyze(), and EEHltTask().
Definition at line 95 of file EEHltTask.h.
Referenced by analyze(), and EEHltTask().
Definition at line 96 of file EEHltTask.h.
Referenced by analyze(), and EEHltTask().
Definition at line 97 of file EEHltTask.h.
Referenced by analyze(), and EEHltTask().
edm::InputTag EEHltTask::EEDetIdCollection0_ [private] |
Definition at line 87 of file EEHltTask.h.
Referenced by analyze(), and EEHltTask().
edm::InputTag EEHltTask::EEDetIdCollection1_ [private] |
Definition at line 88 of file EEHltTask.h.
Referenced by analyze(), and EEHltTask().
edm::InputTag EEHltTask::EEDetIdCollection2_ [private] |
Definition at line 89 of file EEHltTask.h.
Referenced by analyze(), and EEHltTask().
edm::InputTag EEHltTask::EEDetIdCollection3_ [private] |
Definition at line 90 of file EEHltTask.h.
Referenced by analyze(), and EEHltTask().
edm::InputTag EEHltTask::EEDetIdCollection4_ [private] |
Definition at line 91 of file EEHltTask.h.
bool EEHltTask::enableCleanup_ [private] |
Definition at line 83 of file EEHltTask.h.
Referenced by EEHltTask(), and endJob().
Definition at line 98 of file EEHltTask.h.
Referenced by analyze(), and EEHltTask().
std::string EEHltTask::folderName_ [private] |
Definition at line 81 of file EEHltTask.h.
Referenced by beginJob(), cleanup(), EEHltTask(), and setup().
int EEHltTask::ievt_ [private] |
Definition at line 76 of file EEHltTask.h.
Referenced by analyze(), beginJob(), and endJob().
bool EEHltTask::init_ [private] |
Definition at line 104 of file EEHltTask.h.
Referenced by analyze(), cleanup(), EEHltTask(), and setup().
bool EEHltTask::initGeometry_ [private] |
Definition at line 105 of file EEHltTask.h.
Referenced by EEHltTask(), and initGeometry().
const EcalElectronicsMapping* EEHltTask::map [private] |
Definition at line 107 of file EEHltTask.h.
Referenced by EEHltTask(), initGeometry(), and iSM().
Definition at line 102 of file EEHltTask.h.
Referenced by analyze(), cleanup(), EEHltTask(), reset(), and setup().
MonitorElement* EEHltTask::meEEFedsOccupancy_ [private] |
Definition at line 100 of file EEHltTask.h.
Referenced by analyze(), cleanup(), EEHltTask(), reset(), and setup().
MonitorElement* EEHltTask::meEEFedsSizeErrors_ [private] |
Definition at line 101 of file EEHltTask.h.
Referenced by analyze(), cleanup(), EEHltTask(), reset(), and setup().
bool EEHltTask::mergeRuns_ [private] |
Definition at line 85 of file EEHltTask.h.
Referenced by beginRun(), and EEHltTask().
std::string EEHltTask::prefixME_ [private] |
Definition at line 80 of file EEHltTask.h.
Referenced by beginJob(), cleanup(), EEHltTask(), and setup().