#include <EcalEndcapMonitorModule.h>
Definition at line 21 of file EcalEndcapMonitorModule.h.
EcalEndcapMonitorModule::EcalEndcapMonitorModule | ( | const edm::ParameterSet & | ps | ) |
Constructor.
Definition at line 32 of file EcalEndcapMonitorModule.cc.
References gather_cfg::cout, debug_, EcalRawDataCollection_, EcalRecHitCollection_, EcalTrigPrimDigiCollection_, EEDigiCollection_, enableCleanup_, enableEventDisplay_, evtNumber_, evtType_, fixedRunNumber_, fixedRunType_, edm::ParameterSet::getParameter(), edm::ParameterSet::getUntrackedParameter(), i, init_, meEEDCC_, meEEdigis_, meEEhits_, meEEtpdigis_, meEvent_, meEvt_, meEvtType_, mergeRuns_, meRun_, meRunType_, meStatus_, prefixME_, runNumber_, runType_, AlCaHLTBitMon_QueryRunRegistry::string, and verbose_.
{ // verbose switch verbose_ = ps.getUntrackedParameter<bool>("verbose", false); if ( verbose_ ) { std::cout << std::endl; std::cout << " *** Ecal Endcap Generic Monitor ***" << std::endl; std::cout << std::endl; } init_ = false; EcalRawDataCollection_ = ps.getParameter<edm::InputTag>("EcalRawDataCollection"); EEDigiCollection_ = ps.getParameter<edm::InputTag>("EEDigiCollection"); EcalRecHitCollection_ = ps.getParameter<edm::InputTag>("EcalRecHitCollection"); EcalTrigPrimDigiCollection_ = ps.getParameter<edm::InputTag>("EcalTrigPrimDigiCollection"); // this should come from the event header runNumber_ = ps.getUntrackedParameter<int>("runNumber", 0); fixedRunNumber_ = false; if ( runNumber_ != 0 ) fixedRunNumber_ = true; if ( fixedRunNumber_ ) { if ( verbose_ ) { std::cout << " fixed Run Number = " << runNumber_ << std::endl; } } // this should come from the event header evtNumber_ = 0; // this should come from the EcalEndcap event header runType_ = ps.getUntrackedParameter<int>("runType", -1); evtType_ = runType_; fixedRunType_ = false; if ( runType_ != -1 ) fixedRunType_ = true; if ( fixedRunType_) { if ( verbose_ ) { std::cout << " fixed Run Type = " << runType_ << std::endl; } } // debug switch debug_ = ps.getUntrackedParameter<bool>("debug", false); if ( debug_ ) { if ( verbose_ ) { std::cout << " debug switch is ON" << std::endl; } } else { if ( verbose_ ) { std::cout << " debug switch is OFF" << std::endl; } } // prefixME path prefixME_ = ps.getUntrackedParameter<std::string>("prefixME", ""); // enableCleanup switch enableCleanup_ = ps.getUntrackedParameter<bool>("enableCleanup", false); // mergeRuns switch mergeRuns_ = ps.getUntrackedParameter<bool>("mergeRuns", false); if ( enableCleanup_ ) { if ( verbose_ ) { std::cout << " enableCleanup switch is ON" << std::endl; } } else { if ( verbose_ ) { std::cout << " enableCleanup switch is OFF" << std::endl; } } // EventDisplay switch enableEventDisplay_ = ps.getUntrackedParameter<bool>("enableEventDisplay", false); meStatus_ = 0; meRun_ = 0; meEvt_ = 0; meRunType_ = 0; meEvtType_ = 0; meEEDCC_ = 0; for (int i = 0; i < 2; i++) { meEEdigis_[i] = 0; meEEhits_[i] = 0; meEEtpdigis_[i] = 0; } for (int i = 0; i < 18; i++) { meEvent_[i] = 0; } }
EcalEndcapMonitorModule::~EcalEndcapMonitorModule | ( | ) | [virtual] |
void EcalEndcapMonitorModule::analyze | ( | const edm::Event & | e, |
const edm::EventSetup & | c | ||
) | [protected, virtual] |
Analyze.
Implements edm::EDAnalyzer.
Definition at line 373 of file EcalEndcapMonitorModule.cc.
References EcalDCCHeaderBlock::COSMIC, EcalDCCHeaderBlock::COSMICS_GLOBAL, EcalDCCHeaderBlock::COSMICS_LOCAL, EcalEndcap, EcalRawDataCollection_, EcalRecHitCollection_, EcalTrigPrimDigiCollection_, EEDigiCollection_, enableEventDisplay_, edm::EventID::event(), evtNumber_, evtType_, MonitorElement::Fill(), fixedRunNumber_, fixedRunType_, edm::Event::getByLabel(), i, edm::EventBase::id(), ievt_, init_, Numbers::initGeometry(), Numbers::iSM(), ecalpyutils::ism(), isPhysics_, EEDetId::ix(), LogDebug, meEEDCC_, meEEdigis_, meEEhits_, meEEtpdigis_, meEvent_, meEvt_, meEvtType_, meRun_, meRunType_, meStatus_, EcalDCCHeaderBlock::MTCC, EcalDCCHeaderBlock::PHYSICS_GLOBAL, EcalDCCHeaderBlock::PHYSICS_LOCAL, edm::EventID::run(), runNumber_, runType_, setup(), Numbers::subDet(), and verbose_.
{ Numbers::initGeometry(c, verbose_); if ( ! init_ ) this->setup(); ievt_++; LogDebug("EcalEndcapMonitorModule") << "processing event " << ievt_; if ( ! fixedRunNumber_ ) runNumber_ = e.id().run(); evtNumber_ = e.id().event(); edm::Handle<EcalRawDataCollection> dcchs; if ( e.getByLabel(EcalRawDataCollection_, dcchs) ) { if ( dcchs->size() == 0 ) { LogDebug("EcalEndcapMonitorModule") << EcalRawDataCollection_ << " is empty"; return; } int neec = 0; for ( EcalRawDataCollection::const_iterator dcchItr = dcchs->begin(); dcchItr != dcchs->end(); ++dcchItr ) { if ( Numbers::subDet( *dcchItr ) != EcalEndcap ) continue; neec++; } for ( EcalRawDataCollection::const_iterator dcchItr = dcchs->begin(); dcchItr != dcchs->end(); ++dcchItr ) { if ( Numbers::subDet( *dcchItr ) != EcalEndcap ) continue; if ( meEEDCC_ ) meEEDCC_->Fill(Numbers::iSM( *dcchItr, EcalEndcap )+0.5); if ( ! fixedRunNumber_ ) { runNumber_ = dcchItr->getRunNumber(); } evtNumber_ = dcchItr->getLV1(); if ( ! fixedRunType_ ) { runType_ = dcchItr->getRunType(); evtType_ = runType_; } if ( evtType_ < 0 || evtType_ > 22 ) evtType_ = -1; if ( meEvtType_ ) meEvtType_->Fill(evtType_+0.5, 1./neec); } LogDebug("EcalEndcapMonitorModule") << "event: " << ievt_ << " DCC headers collection size: " << neec; } else { if ( evtType_ < 0 || evtType_ > 22 ) evtType_ = -1; if ( meEvtType_ ) meEvtType_->Fill(evtType_+0.5, 1./18.); edm::LogWarning("EcalEndcapMonitorModule") << EcalRawDataCollection_ << " not available"; } isPhysics_ = false; if ( evtType_ == EcalDCCHeaderBlock::COSMIC || evtType_ == EcalDCCHeaderBlock::MTCC || evtType_ == EcalDCCHeaderBlock::COSMICS_GLOBAL || evtType_ == EcalDCCHeaderBlock::PHYSICS_GLOBAL || evtType_ == EcalDCCHeaderBlock::COSMICS_LOCAL || evtType_ == EcalDCCHeaderBlock::PHYSICS_LOCAL ) isPhysics_ = true; if ( meRunType_ ) meRunType_->Fill(runType_); if ( ievt_ == 1 ) { LogDebug("EcalEndcapMonitorModule") << "processing run " << runNumber_; // begin-of-run if ( meStatus_ ) meStatus_->Fill(0); } else { // running if ( meStatus_ ) meStatus_->Fill(1); } if ( meRun_ ) meRun_->Fill(runNumber_); if ( meEvt_ ) meEvt_->Fill(evtNumber_); edm::Handle<EEDigiCollection> digis; if ( e.getByLabel(EEDigiCollection_, digis) ) { int need = digis->size(); LogDebug("EcalEndcapMonitorModule") << "event " << ievt_ << " digi collection size " << need; int counter[18] = { 0 }; if ( meEEdigis_[0] ) { if ( isPhysics_ ) meEEdigis_[0]->Fill(float(need)); } for ( EEDigiCollection::const_iterator digiItr = digis->begin(); digiItr != digis->end(); ++digiItr ) { EEDetId id = digiItr->id(); int ism = Numbers::iSM( id ); counter[ism-1]++; } for (int i = 0; i < 18; i++) { if ( meEEdigis_[1] ) { if ( isPhysics_ ) meEEdigis_[1]->Fill(i+1+0.5, counter[i]); } } } else { edm::LogWarning("EcalEndcapMonitorModule") << EEDigiCollection_ << " not available"; } edm::Handle<EcalRecHitCollection> hits; if ( e.getByLabel(EcalRecHitCollection_, hits) ) { int neeh = hits->size(); LogDebug("EcalEndcapMonitorModule") << "event " << ievt_ << " hits collection size " << neeh; if ( meEEhits_[0] ) { if ( isPhysics_ ) meEEhits_[0]->Fill(float(neeh)); } int counter[18] = { 0 }; for ( EcalRecHitCollection::const_iterator hitItr = hits->begin(); hitItr != hits->end(); ++hitItr ) { EEDetId id = hitItr->id(); int ix = id.ix(); int iy = id.iy(); int ism = Numbers::iSM( id ); counter[ism-1]++; if ( ism >= 1 && ism <= 9 ) ix = 101 - ix; float xix = ix - 0.5; float xiy = iy - 0.5; float xval = hitItr->energy(); if ( enableEventDisplay_ ) { if ( xval >= 10 ) { if ( meEvent_[ism-1] ) meEvent_[ism-1]->Fill(xix, xiy, xval); } } } for (int i = 0; i < 18; i++) { if ( meEEhits_[1] ) { if ( isPhysics_ ) meEEhits_[1]->Fill(i+1+0.5, counter[i]); } } } else { edm::LogWarning("EcalEndcapMonitorModule") << EcalRecHitCollection_ << " not available"; } edm::Handle<EcalTrigPrimDigiCollection> tpdigis; if ( e.getByLabel(EcalTrigPrimDigiCollection_, tpdigis) ) { int neetpd = 0; int counter[18] = { 0 }; for ( EcalTrigPrimDigiCollection::const_iterator tpdigiItr = tpdigis->begin(); tpdigiItr != tpdigis->end(); ++tpdigiItr ) { EcalTrigTowerDetId idt = tpdigiItr->id(); if ( Numbers::subDet( idt ) != EcalEndcap ) continue; int ismt = Numbers::iSM( idt ); neetpd++; counter[ismt-1]++; } LogDebug("EcalEndcapMonitorModule") << "event " << ievt_ << " TP digi collection size " << neetpd; if ( meEEtpdigis_[0] ) { if ( isPhysics_ ) meEEtpdigis_[0]->Fill(float(neetpd)); } for (int i = 0; i < 18; i++) { if ( meEEtpdigis_[1] ) { if ( isPhysics_ ) meEEtpdigis_[1]->Fill(i+1+0.5, counter[i]); } } } else { edm::LogWarning("EcalEndcapMonitorModule") << EcalTrigPrimDigiCollection_ << " not available"; } }
void EcalEndcapMonitorModule::beginJob | ( | void | ) | [protected, virtual] |
Reimplemented from edm::EDAnalyzer.
Definition at line 137 of file EcalEndcapMonitorModule.cc.
References gather_cfg::cout, debug_, dqmStore_, enableEventDisplay_, ievt_, cppFunctionSkipper::operator, prefixME_, DQMStore::rmdir(), and DQMStore::setCurrentFolder().
{ if ( debug_ ) std::cout << "EcalEndcapMonitorModule: beginJob" << std::endl; ievt_ = 0; dqmStore_ = edm::Service<DQMStore>().operator->(); if ( dqmStore_ ) { dqmStore_->setCurrentFolder(prefixME_ + "/EcalInfo"); dqmStore_->rmdir(prefixME_ + "/EcalInfo"); if ( enableEventDisplay_ ) { dqmStore_->setCurrentFolder(prefixME_ + "/EcalEvent"); dqmStore_->rmdir(prefixME_ + "/EcalEvent"); } } }
void EcalEndcapMonitorModule::beginRun | ( | const edm::Run & | r, |
const edm::EventSetup & | c | ||
) | [protected, virtual] |
BeginRun.
Reimplemented from edm::EDAnalyzer.
Definition at line 156 of file EcalEndcapMonitorModule.cc.
References gather_cfg::cout, debug_, mergeRuns_, and reset().
{ if ( debug_ ) std::cout << "EcalEndcapMonitorModule: beginRun" << std::endl; if ( ! mergeRuns_ ) this->reset(); }
void EcalEndcapMonitorModule::cleanup | ( | void | ) | [protected] |
Cleanup.
Definition at line 295 of file EcalEndcapMonitorModule.cc.
References dqmStore_, enableCleanup_, enableEventDisplay_, MonitorElement::getName(), i, init_, meEEDCC_, meEEdigis_, meEEhits_, meEEtpdigis_, meEvent_, meEvt_, meEvtType_, meRun_, meRunType_, meStatus_, prefixME_, DQMStore::removeElement(), and DQMStore::setCurrentFolder().
Referenced by endJob().
{ if ( ! enableCleanup_ ) return; if ( dqmStore_ ) { dqmStore_->setCurrentFolder(prefixME_ + "/EcalInfo"); if ( meStatus_ ) dqmStore_->removeElement( meStatus_->getName() ); meStatus_ = 0; if ( meRun_ ) dqmStore_->removeElement( meRun_->getName() ); meRun_ = 0; if ( meEvt_ ) dqmStore_->removeElement( meEvt_->getName() ); meEvt_ = 0; if ( meRunType_ ) dqmStore_->removeElement( meRunType_->getName() ); meRunType_ = 0; if ( meEvtType_ ) dqmStore_->removeElement( meEvtType_->getName() ); meEvtType_ = 0; if ( meEEDCC_ ) dqmStore_->removeElement( meEEDCC_->getName() ); meEEDCC_ = 0; for (int i = 0; i < 2; i++) { if ( meEEdigis_[i] ) dqmStore_->removeElement( meEEdigis_[i]->getName() ); meEEdigis_[i] = 0; if ( meEEhits_[i] ) dqmStore_->removeElement( meEEhits_[i]->getName() ); meEEhits_[i] = 0; if ( meEEtpdigis_[i] ) dqmStore_->removeElement( meEEtpdigis_[i]->getName() ); meEEtpdigis_[i] = 0; } if ( enableEventDisplay_ ) { dqmStore_->setCurrentFolder(prefixME_ + "/EcalEvent"); for (int i = 0; i < 18; i++) { if ( meEvent_[i] ) dqmStore_->removeElement( meEvent_[i]->getName() ); meEvent_[i] = 0; } } } init_ = false; }
void EcalEndcapMonitorModule::endJob | ( | void | ) | [protected, virtual] |
Reimplemented from edm::EDAnalyzer.
Definition at line 353 of file EcalEndcapMonitorModule.cc.
References cleanup(), gather_cfg::cout, debug_, dqmStore_, evtNumber_, MonitorElement::Fill(), DQMStore::get(), ievt_, init_, meEvt_, meRun_, meStatus_, prefixME_, and runNumber_.
{ if ( debug_ ) std::cout << "EcalEndcapMonitorModule: endJob, ievt = " << ievt_ << std::endl; if ( dqmStore_ ) { meStatus_ = dqmStore_->get(prefixME_ + "/EcalInfo/STATUS"); meRun_ = dqmStore_->get(prefixME_ + "/EcalInfo/RUN"); meEvt_ = dqmStore_->get(prefixME_ + "/EcalInfo/EVT"); } // end-of-run if ( meStatus_ ) meStatus_->Fill(2); if ( meRun_ ) meRun_->Fill(runNumber_); if ( meEvt_ ) meEvt_->Fill(evtNumber_); if ( init_ ) this->cleanup(); }
void EcalEndcapMonitorModule::endRun | ( | const edm::Run & | r, |
const edm::EventSetup & | c | ||
) | [protected, virtual] |
EndRun.
Reimplemented from edm::EDAnalyzer.
Definition at line 164 of file EcalEndcapMonitorModule.cc.
References gather_cfg::cout, debug_, evtNumber_, MonitorElement::Fill(), meEvt_, meRun_, meStatus_, and runNumber_.
void EcalEndcapMonitorModule::reset | ( | void | ) | [protected] |
Reset.
Definition at line 176 of file EcalEndcapMonitorModule.cc.
References enableEventDisplay_, i, meEEDCC_, meEEdigis_, meEEhits_, meEEtpdigis_, meEvent_, meEvtType_, and MonitorElement::Reset().
Referenced by beginRun().
{ if ( meEvtType_ ) meEvtType_->Reset(); if ( meEEDCC_ ) meEEDCC_->Reset(); for (int i = 0; i < 2; i++) { if ( meEEdigis_[i] ) meEEdigis_[i]->Reset(); if ( meEEhits_[i] ) meEEdigis_[i]->Reset(); if ( meEEtpdigis_[i] ) meEEtpdigis_[i]->Reset(); } if ( enableEventDisplay_ ) { for (int i = 0; i < 18; i++) { if ( meEvent_[i] ) meEvent_[i]->Reset(); } } }
void EcalEndcapMonitorModule::setup | ( | void | ) | [protected] |
Setup.
Definition at line 198 of file EcalEndcapMonitorModule.cc.
References EcalDCCHeaderBlock::BEAMH2, EcalDCCHeaderBlock::BEAMH4, DQMStore::book1D(), DQMStore::book2D(), DQMStore::bookInt(), DQMStore::bookProfile(), EcalDCCHeaderBlock::COSMIC, EcalDCCHeaderBlock::COSMICS_GLOBAL, EcalDCCHeaderBlock::COSMICS_LOCAL, dqmStore_, enableEventDisplay_, MonitorElement::Fill(), EcalDCCHeaderBlock::HALO_GLOBAL, EcalDCCHeaderBlock::HALO_LOCAL, i, init_, Numbers::ix0EE(), Numbers::iy0EE(), EcalDCCHeaderBlock::LASER_DELAY_SCAN, EcalDCCHeaderBlock::LASER_GAP, EcalDCCHeaderBlock::LASER_POWER_SCAN, EcalDCCHeaderBlock::LASER_STD, EcalDCCHeaderBlock::LED_GAP, EcalDCCHeaderBlock::LED_STD, meEEDCC_, meEEdigis_, meEEhits_, meEEtpdigis_, meEvent_, meEvt_, meEvtType_, meRun_, meRunType_, meStatus_, EcalDCCHeaderBlock::MTCC, mergeVDriftHistosByStation::name, EcalDCCHeaderBlock::PEDESTAL_25NS_SCAN, EcalDCCHeaderBlock::PEDESTAL_GAP, EcalDCCHeaderBlock::PEDESTAL_OFFSET_SCAN, EcalDCCHeaderBlock::PEDESTAL_STD, EcalDCCHeaderBlock::PHYSICS_GLOBAL, EcalDCCHeaderBlock::PHYSICS_LOCAL, prefixME_, Numbers::sEE(), MonitorElement::setAxisTitle(), MonitorElement::setBinLabel(), DQMStore::setCurrentFolder(), MonitorElement::setResetMe(), AlCaHLTBitMon_QueryRunRegistry::string, DQMStore::tag(), EcalDCCHeaderBlock::TESTPULSE_GAP, EcalDCCHeaderBlock::TESTPULSE_MGPA, and EcalDCCHeaderBlock::TESTPULSE_SCAN_MEM.
Referenced by analyze().
{ init_ = true; if ( dqmStore_ ) { dqmStore_->setCurrentFolder(prefixME_ + "/EcalInfo"); meStatus_ = dqmStore_->bookInt("STATUS"); meRun_ = dqmStore_->bookInt("RUN"); meEvt_ = dqmStore_->bookInt("EVT"); meRunType_ = dqmStore_->bookInt("RUNTYPE"); meEvtType_ = dqmStore_->book1D("EVTTYPE", "EVTTYPE", 31, -1., 30.); meEvtType_->setAxisTitle("number of events", 2); meEvtType_->setBinLabel(1, "UNKNOWN", 1); meEvtType_->setBinLabel(2+EcalDCCHeaderBlock::COSMIC, "COSMIC", 1); meEvtType_->setBinLabel(2+EcalDCCHeaderBlock::BEAMH4, "BEAMH4", 1); meEvtType_->setBinLabel(2+EcalDCCHeaderBlock::BEAMH2, "BEAMH2", 1); meEvtType_->setBinLabel(2+EcalDCCHeaderBlock::MTCC, "MTCC", 1); meEvtType_->setBinLabel(2+EcalDCCHeaderBlock::LASER_STD, "LASER_STD", 1); meEvtType_->setBinLabel(2+EcalDCCHeaderBlock::LASER_POWER_SCAN, "LASER_POWER_SCAN", 1); meEvtType_->setBinLabel(2+EcalDCCHeaderBlock::LASER_DELAY_SCAN, "LASER_DELAY_SCAN", 1); meEvtType_->setBinLabel(2+EcalDCCHeaderBlock::TESTPULSE_SCAN_MEM, "TESTPULSE_SCAN_MEM", 1); meEvtType_->setBinLabel(2+EcalDCCHeaderBlock::TESTPULSE_MGPA, "TESTPULSE_MGPA", 1); meEvtType_->setBinLabel(2+EcalDCCHeaderBlock::PEDESTAL_STD, "PEDESTAL_STD", 1); meEvtType_->setBinLabel(2+EcalDCCHeaderBlock::PEDESTAL_OFFSET_SCAN, "PEDESTAL_OFFSET_SCAN", 1); meEvtType_->setBinLabel(2+EcalDCCHeaderBlock::PEDESTAL_25NS_SCAN, "PEDESTAL_25NS_SCAN", 1); meEvtType_->setBinLabel(2+EcalDCCHeaderBlock::LED_STD, "LED_STD", 1); meEvtType_->setBinLabel(2+EcalDCCHeaderBlock::PHYSICS_GLOBAL, "PHYSICS_GLOBAL", 1); meEvtType_->setBinLabel(2+EcalDCCHeaderBlock::COSMICS_GLOBAL, "COSMICS_GLOBAL", 1); meEvtType_->setBinLabel(2+EcalDCCHeaderBlock::HALO_GLOBAL, "HALO_GLOBAL", 1); meEvtType_->setBinLabel(2+EcalDCCHeaderBlock::LASER_GAP, "LASER_GAP", 1); meEvtType_->setBinLabel(2+EcalDCCHeaderBlock::TESTPULSE_GAP, "TESTPULSE_GAP"); meEvtType_->setBinLabel(2+EcalDCCHeaderBlock::PEDESTAL_GAP, "PEDESTAL_GAP"); meEvtType_->setBinLabel(2+EcalDCCHeaderBlock::LED_GAP, "LED_GAP", 1); meEvtType_->setBinLabel(2+EcalDCCHeaderBlock::PHYSICS_LOCAL, "PHYSICS_LOCAL", 1); meEvtType_->setBinLabel(2+EcalDCCHeaderBlock::COSMICS_LOCAL, "COSMICS_LOCAL", 1); meEvtType_->setBinLabel(2+EcalDCCHeaderBlock::HALO_LOCAL, "HALO_LOCAL", 1); } // unknown if ( meStatus_ ) meStatus_->Fill(-1); if ( meRun_ ) meRun_->Fill(-1); if ( meEvt_ ) meEvt_->Fill(-1); if ( meRunType_ ) meRunType_->Fill(-1); std::string name; if ( dqmStore_ ) { dqmStore_->setCurrentFolder(prefixME_ + "/EcalInfo"); meEEDCC_ = dqmStore_->book1D("EEMM DCC", "EEMM DCC", 18, 1, 19.); for (int i = 0; i < 18; i++) { meEEDCC_->setBinLabel(i+1, Numbers::sEE(i+1).c_str(), 1); } meEEdigis_[0] = dqmStore_->book1D("EEMM digi number", "EEMM digi number", 100, 0., 3000.); meEEdigis_[1] = dqmStore_->bookProfile("EEMM digi number profile", "EEMM digi number profile", 18, 1, 19., 850, 0., 851., "s"); for (int i = 0; i < 18; i++) { meEEdigis_[1]->setBinLabel(i+1, Numbers::sEE(i+1).c_str(), 1); } meEEhits_[0] = dqmStore_->book1D("EEMM hit number", "EEMM hit number", 100, 0., 3000.); meEEhits_[1] = dqmStore_->bookProfile("EEMM hit number profile", "EEMM hit number profile", 18, 1, 19., 850, 0., 851., "s"); for (int i = 0; i < 18; i++) { meEEhits_[1]->setBinLabel(i+1, Numbers::sEE(i+1).c_str(), 1); } meEEtpdigis_[0] = dqmStore_->book1D("EEMM TP digi number", "EEMM TP digi number", 100, 0., 1585.); meEEtpdigis_[1] = dqmStore_->bookProfile("EEMM TP digi number profile", "EEMM TP digi number profile", 18, 1, 19., 34, 0., 35., "s"); for (int i = 0; i < 18; i++) { meEEtpdigis_[1]->setBinLabel(i+1, Numbers::sEE(i+1).c_str(), 1); } if ( enableEventDisplay_ ) { dqmStore_->setCurrentFolder(prefixME_ + "/EcalEvent"); for (int i = 0; i < 18; i++) { name = "EEMM event " + Numbers::sEE(i+1); meEvent_[i] = dqmStore_->book2D(name, name, 50, Numbers::ix0EE(i+1)+0., Numbers::ix0EE(i+1)+50., 50, Numbers::iy0EE(i+1)+0., Numbers::iy0EE(i+1)+50.); meEvent_[i]->setAxisTitle("ix", 1); if ( i+1 >= 1 && i+1 <= 9 ) meEvent_[i]->setAxisTitle("101-ix", 1); meEvent_[i]->setAxisTitle("iy", 2); dqmStore_->tag(meEvent_[i], i+1); if ( meEvent_[i] ) meEvent_[i]->setResetMe(true); } } } }
bool EcalEndcapMonitorModule::debug_ [private] |
Definition at line 79 of file EcalEndcapMonitorModule.h.
Referenced by beginJob(), beginRun(), EcalEndcapMonitorModule(), endJob(), and endRun().
DQMStore* EcalEndcapMonitorModule::dqmStore_ [private] |
Definition at line 83 of file EcalEndcapMonitorModule.h.
Referenced by beginJob(), cleanup(), endJob(), and setup().
Definition at line 73 of file EcalEndcapMonitorModule.h.
Referenced by analyze(), and EcalEndcapMonitorModule().
Definition at line 75 of file EcalEndcapMonitorModule.h.
Referenced by analyze(), and EcalEndcapMonitorModule().
Definition at line 76 of file EcalEndcapMonitorModule.h.
Referenced by analyze(), and EcalEndcapMonitorModule().
Definition at line 74 of file EcalEndcapMonitorModule.h.
Referenced by analyze(), and EcalEndcapMonitorModule().
bool EcalEndcapMonitorModule::enableCleanup_ [private] |
Definition at line 87 of file EcalEndcapMonitorModule.h.
Referenced by cleanup(), and EcalEndcapMonitorModule().
bool EcalEndcapMonitorModule::enableEventDisplay_ [private] |
Definition at line 81 of file EcalEndcapMonitorModule.h.
Referenced by analyze(), beginJob(), cleanup(), EcalEndcapMonitorModule(), reset(), and setup().
int EcalEndcapMonitorModule::evtNumber_ [private] |
Definition at line 60 of file EcalEndcapMonitorModule.h.
Referenced by analyze(), EcalEndcapMonitorModule(), endJob(), and endRun().
int EcalEndcapMonitorModule::evtType_ [private] |
Definition at line 63 of file EcalEndcapMonitorModule.h.
Referenced by analyze(), and EcalEndcapMonitorModule().
bool EcalEndcapMonitorModule::fixedRunNumber_ [private] |
Definition at line 65 of file EcalEndcapMonitorModule.h.
Referenced by analyze(), and EcalEndcapMonitorModule().
bool EcalEndcapMonitorModule::fixedRunType_ [private] |
Definition at line 67 of file EcalEndcapMonitorModule.h.
Referenced by analyze(), and EcalEndcapMonitorModule().
int EcalEndcapMonitorModule::ievt_ [private] |
Definition at line 71 of file EcalEndcapMonitorModule.h.
Referenced by analyze(), beginJob(), and endJob().
bool EcalEndcapMonitorModule::init_ [private] |
Definition at line 107 of file EcalEndcapMonitorModule.h.
Referenced by analyze(), cleanup(), EcalEndcapMonitorModule(), endJob(), and setup().
bool EcalEndcapMonitorModule::isPhysics_ [private] |
Definition at line 69 of file EcalEndcapMonitorModule.h.
Referenced by analyze().
MonitorElement* EcalEndcapMonitorModule::meEEDCC_ [private] |
Definition at line 99 of file EcalEndcapMonitorModule.h.
Referenced by analyze(), cleanup(), EcalEndcapMonitorModule(), reset(), and setup().
MonitorElement* EcalEndcapMonitorModule::meEEdigis_[2] [private] |
Definition at line 101 of file EcalEndcapMonitorModule.h.
Referenced by analyze(), cleanup(), EcalEndcapMonitorModule(), reset(), and setup().
MonitorElement* EcalEndcapMonitorModule::meEEhits_[2] [private] |
Definition at line 102 of file EcalEndcapMonitorModule.h.
Referenced by analyze(), cleanup(), EcalEndcapMonitorModule(), reset(), and setup().
MonitorElement* EcalEndcapMonitorModule::meEEtpdigis_[2] [private] |
Definition at line 103 of file EcalEndcapMonitorModule.h.
Referenced by analyze(), cleanup(), EcalEndcapMonitorModule(), reset(), and setup().
MonitorElement* EcalEndcapMonitorModule::meEvent_[18] [private] |
Definition at line 105 of file EcalEndcapMonitorModule.h.
Referenced by analyze(), cleanup(), EcalEndcapMonitorModule(), reset(), and setup().
MonitorElement* EcalEndcapMonitorModule::meEvt_ [private] |
Definition at line 94 of file EcalEndcapMonitorModule.h.
Referenced by analyze(), cleanup(), EcalEndcapMonitorModule(), endJob(), endRun(), and setup().
Definition at line 97 of file EcalEndcapMonitorModule.h.
Referenced by analyze(), cleanup(), EcalEndcapMonitorModule(), reset(), and setup().
bool EcalEndcapMonitorModule::mergeRuns_ [private] |
Definition at line 89 of file EcalEndcapMonitorModule.h.
Referenced by beginRun(), and EcalEndcapMonitorModule().
MonitorElement* EcalEndcapMonitorModule::meRun_ [private] |
Definition at line 93 of file EcalEndcapMonitorModule.h.
Referenced by analyze(), cleanup(), EcalEndcapMonitorModule(), endJob(), endRun(), and setup().
Definition at line 96 of file EcalEndcapMonitorModule.h.
Referenced by analyze(), cleanup(), EcalEndcapMonitorModule(), and setup().
MonitorElement* EcalEndcapMonitorModule::meStatus_ [private] |
Definition at line 91 of file EcalEndcapMonitorModule.h.
Referenced by analyze(), cleanup(), EcalEndcapMonitorModule(), endJob(), endRun(), and setup().
std::string EcalEndcapMonitorModule::prefixME_ [private] |
Definition at line 85 of file EcalEndcapMonitorModule.h.
Referenced by beginJob(), cleanup(), EcalEndcapMonitorModule(), endJob(), and setup().
int EcalEndcapMonitorModule::runNumber_ [private] |
Definition at line 59 of file EcalEndcapMonitorModule.h.
Referenced by analyze(), EcalEndcapMonitorModule(), endJob(), and endRun().
int EcalEndcapMonitorModule::runType_ [private] |
Definition at line 62 of file EcalEndcapMonitorModule.h.
Referenced by analyze(), and EcalEndcapMonitorModule().
bool EcalEndcapMonitorModule::verbose_ [private] |
Definition at line 78 of file EcalEndcapMonitorModule.h.
Referenced by analyze(), and EcalEndcapMonitorModule().