#include <DQM/FourVectorHLT/src/FourVectorHLT.cc>
Classes | |
class | PathInfo |
class | PathInfoCollection |
Public Member Functions | |
FourVectorHLT (const edm::ParameterSet &) | |
~FourVectorHLT () | |
Private Member Functions | |
virtual void | analyze (const edm::Event &, const edm::EventSetup &) |
virtual void | beginJob () |
void | beginRun (const edm::Run &run, const edm::EventSetup &c) |
virtual void | endJob () |
void | endRun (const edm::Run &run, const edm::EventSetup &c) |
EndRun. | |
Private Attributes | |
int | currentRun_ |
DQMStore * | dbe_ |
std::string | dirname_ |
PathInfoCollection | hltPaths_ |
bool | monitorDaemon_ |
unsigned int | nBins_ |
int | nev_ |
bool | plotAll_ |
double | ptMax_ |
double | ptMin_ |
bool | resetMe_ |
int | theHLTOutputType |
MonitorElement * | total_ |
edm::InputTag | triggerResultLabel_ |
edm::InputTag | triggerSummaryLabel_ |
Description: This is a DQM source meant to plot high-level HLT trigger quantities as stored in the HLT results object TriggerResults
Implementation: <Notes on="" implementation>="">
Definition at line 50 of file FourVectorHLT.h.
FourVectorHLT::FourVectorHLT | ( | const edm::ParameterSet & | iConfig | ) | [explicit] |
Definition at line 18 of file FourVectorHLT.cc.
References dbe_, dirname_, filters, edm::ParameterSet::getParameter(), edm::ParameterSet::getUntrackedParameter(), hltPaths_, LogDebug, nBins_, cmsCodeRules::cppFunctionSkipper::operator, plotAll_, jptDQMConfig_cff::ptMax, ptMax_, PtMinSelector_cfg::ptMin, ptMin_, DQMStore::setCurrentFolder(), DQMStore::setVerbose(), and triggerSummaryLabel_.
: resetMe_(true), currentRun_(-99) { LogDebug("FourVectorHLT") << "constructor...." ; dbe_ = Service < DQMStore > ().operator->(); if ( ! dbe_ ) { LogWarning("Status") << "unable to get DQMStore service?"; } if (iConfig.getUntrackedParameter < bool > ("DQMStore", false)) { dbe_->setVerbose(0); } dirname_="HLT/FourVectorHLT" ; if (dbe_ != 0 ) { LogDebug("Status") << "Setting current directory to " << dirname_; dbe_->setCurrentFolder(dirname_); } // plotting paramters ptMin_ = iConfig.getUntrackedParameter<double>("ptMin",0.); ptMax_ = iConfig.getUntrackedParameter<double>("ptMax",200.); nBins_ = iConfig.getUntrackedParameter<unsigned int>("Nbins",50); plotAll_ = iConfig.getUntrackedParameter<bool>("plotAll", false); // this is the list of paths to look at. std::vector<edm::ParameterSet> filters = iConfig.getParameter<std::vector<edm::ParameterSet> >("filters"); for(std::vector<edm::ParameterSet>::iterator filterconf = filters.begin() ; filterconf != filters.end(); filterconf++) { std::string me = filterconf->getParameter<std::string>("name"); int objectType = filterconf->getParameter<unsigned int>("type"); float ptMin = filterconf->getUntrackedParameter<double>("ptMin"); float ptMax = filterconf->getUntrackedParameter<double>("ptMax"); hltPaths_.push_back(PathInfo(me, objectType, ptMin, ptMax)); } if ( hltPaths_.size() && plotAll_) { // these two ought to be mutually exclusive.... LogWarning("Configuration") << "Using both plotAll and a list. " "list will be ignored." ; hltPaths_.clear(); } triggerSummaryLabel_ = iConfig.getParameter<edm::InputTag>("triggerSummaryLabel"); }
FourVectorHLT::~FourVectorHLT | ( | ) |
Definition at line 70 of file FourVectorHLT.cc.
{ // do anything here that needs to be done at desctruction time // (e.g. close files, deallocate resources etc.) }
void FourVectorHLT::analyze | ( | const edm::Event & | iEvent, |
const edm::EventSetup & | iSetup | ||
) | [private, virtual] |
Implements edm::EDAnalyzer.
Definition at line 85 of file FourVectorHLT.cc.
References DQMStore::book1D(), DQMStore::book2D(), dbe_, dirname_, alignCSCRings::e, eta(), FourVectorHLT::PathInfoCollection::find(), edm::Event::getByLabel(), hltPaths_, getHLTprescales::index, gen::k, LogDebug, mergeVDriftHistosByStation::name, nBins_, nev_, AlCaHLTBitMon_ParallelJobs::p, phi, plotAll_, ptMax_, ptMin_, DQMStore::setCurrentFolder(), indexGen::title, triggerSummaryLabel_, and v.
{ using namespace edm; using namespace trigger; ++nev_; LogDebug("Status")<< "analyze" ; edm::Handle<TriggerEvent> triggerObj; iEvent.getByLabel(triggerSummaryLabel_,triggerObj); if(!triggerObj.isValid()) { edm::LogInfo("Status") << "Summary HLT object (TriggerEvent) not found, " "skipping event"; return; } const trigger::TriggerObjectCollection & toc(triggerObj->getObjects()); if ( plotAll_ ) { for ( size_t ia = 0; ia < triggerObj->sizeFilters(); ++ ia) { std::string fullname = triggerObj->filterTag(ia).encode(); // the name can have in it the module label as well as the process and // other labels - strip 'em std::string name; size_t p = fullname.find_first_of(':'); if ( p != std::string::npos) { name = fullname.substr(0, p); } else { name = fullname; } LogDebug("Parameter") << "filter " << ia << ", full name = " << fullname << ", p = " << p << ", abbreviated = " << name ; PathInfoCollection::iterator pic = hltPaths_.find(name); if ( pic == hltPaths_.end() ) { // doesn't exist - add it MonitorElement *et(0), *eta(0), *phi(0), *etavsphi(0); std::string histoname(name+"_et"); LogDebug("Status") << "new histo with name "<< histoname ; dbe_->setCurrentFolder(dirname_); std::string title(name+" E_{T}"); et = dbe_->book1D(histoname.c_str(), title.c_str(),nBins_, 0, 100); histoname = name+"_eta"; title = name+" #eta"; eta = dbe_->book1D(histoname.c_str(), title.c_str(),nBins_,-2.7,2.7); histoname = name+"_phi"; title = name+" #phi"; phi = dbe_->book1D(histoname.c_str(), title.c_str(),nBins_,-3.14,3.14); histoname = name+"_etaphi"; title = name+" #eta vs #phi"; etavsphi = dbe_->book2D(histoname.c_str(), title.c_str(), nBins_,-2.7,2.7, nBins_,-3.14, 3.14); // no idea how to get the bin boundries in this mode PathInfo e(name,0, et, eta, phi, etavsphi, ptMin_,ptMax_); hltPaths_.push_back(e); pic = hltPaths_.begin() + hltPaths_.size()-1; } const trigger::Keys & k = triggerObj->filterKeys(ia); for (trigger::Keys::const_iterator ki = k.begin(); ki !=k.end(); ++ki ) { LogDebug("Parameters") << "pt, eta, phi = " << toc[*ki].pt() << ", " << toc[*ki].eta() << ", " << toc[*ki].phi() ; pic->getEtHisto()->Fill(toc[*ki].pt()); pic->getEtaHisto()->Fill(toc[*ki].eta()); pic->getPhiHisto()->Fill(toc[*ki].phi()); pic->getEtaVsPhiHisto()->Fill(toc[*ki].eta(), toc[*ki].phi()); } } } else { // not plotAll_ for(PathInfoCollection::iterator v = hltPaths_.begin(); v!= hltPaths_.end(); ++v ) { const int index = triggerObj->filterIndex(v->getName()); if ( index >= triggerObj->sizeFilters() ) { continue; // not in this event } LogDebug("Status") << "filling ... " ; const trigger::Keys & k = triggerObj->filterKeys(index); for (trigger::Keys::const_iterator ki = k.begin(); ki !=k.end(); ++ki ) { v->getEtHisto()->Fill(toc[*ki].pt()); v->getEtaHisto()->Fill(toc[*ki].eta()); v->getPhiHisto()->Fill(toc[*ki].phi()); v->getEtaVsPhiHisto()->Fill(toc[*ki].eta(), toc[*ki].phi()); } } } }
void FourVectorHLT::beginJob | ( | void | ) | [private, virtual] |
Reimplemented from edm::EDAnalyzer.
Definition at line 192 of file FourVectorHLT.cc.
References DQMStore::book1D(), DQMStore::book2D(), dirname_, eta(), hltPaths_, nBins_, nev_, cmsCodeRules::cppFunctionSkipper::operator, phi, plotAll_, DQMStore::rmdir(), DQMStore::setCurrentFolder(), indexGen::title, and v.
{ nev_ = 0; DQMStore *dbe = 0; dbe = Service<DQMStore>().operator->(); if (dbe) { dbe->setCurrentFolder(dirname_); dbe->rmdir(dirname_); } if (dbe) { dbe->setCurrentFolder(dirname_); if ( ! plotAll_ ) { for(PathInfoCollection::iterator v = hltPaths_.begin(); v!= hltPaths_.end(); ++v ) { MonitorElement *et, *eta, *phi, *etavsphi=0; std::string histoname(v->getName()+"_et"); std::string title(v->getName()+" E_t"); et = dbe->book1D(histoname.c_str(), title.c_str(),nBins_, v->getPtMin(), v->getPtMax()); histoname = v->getName()+"_eta"; title = v->getName()+" #eta"; eta = dbe->book1D(histoname.c_str(), title.c_str(),nBins_,-2.7,2.7); histoname = v->getName()+"_phi"; title = v->getName()+" #phi"; phi = dbe->book1D(histoname.c_str(), histoname.c_str(),nBins_,-3.14,3.14); histoname = v->getName()+"_etaphi"; title = v->getName()+" #eta vs #phi"; etavsphi = dbe->book2D(histoname.c_str(), title.c_str(), nBins_,-2.7,2.7, nBins_,-3.14, 3.14); v->setHistos( et, eta, phi, etavsphi); } } // ! plotAll_ - for plotAll we discover it during the event } }
void FourVectorHLT::beginRun | ( | const edm::Run & | run, |
const edm::EventSetup & | c | ||
) | [private, virtual] |
Reimplemented from edm::EDAnalyzer.
Definition at line 252 of file FourVectorHLT.cc.
References edm::RunBase::id(), and LogDebug.
void FourVectorHLT::endJob | ( | void | ) | [private, virtual] |
Reimplemented from edm::EDAnalyzer.
Definition at line 244 of file FourVectorHLT.cc.
References nev_.
void FourVectorHLT::endRun | ( | const edm::Run & | run, |
const edm::EventSetup & | c | ||
) | [private, virtual] |
EndRun.
Reimplemented from edm::EDAnalyzer.
Definition at line 258 of file FourVectorHLT.cc.
References edm::RunBase::id(), and LogDebug.
int FourVectorHLT::currentRun_ [private] |
Definition at line 76 of file FourVectorHLT.h.
DQMStore* FourVectorHLT::dbe_ [private] |
Definition at line 70 of file FourVectorHLT.h.
Referenced by analyze(), and FourVectorHLT().
std::string FourVectorHLT::dirname_ [private] |
Definition at line 82 of file FourVectorHLT.h.
Referenced by analyze(), beginJob(), and FourVectorHLT().
PathInfoCollection FourVectorHLT::hltPaths_ [private] |
Definition at line 170 of file FourVectorHLT.h.
Referenced by analyze(), beginJob(), and FourVectorHLT().
bool FourVectorHLT::monitorDaemon_ [private] |
Definition at line 83 of file FourVectorHLT.h.
unsigned int FourVectorHLT::nBins_ [private] |
Definition at line 78 of file FourVectorHLT.h.
Referenced by analyze(), beginJob(), and FourVectorHLT().
int FourVectorHLT::nev_ [private] |
Definition at line 69 of file FourVectorHLT.h.
Referenced by analyze(), beginJob(), and endJob().
bool FourVectorHLT::plotAll_ [private] |
Definition at line 74 of file FourVectorHLT.h.
Referenced by analyze(), beginJob(), and FourVectorHLT().
double FourVectorHLT::ptMax_ [private] |
Definition at line 80 of file FourVectorHLT.h.
Referenced by analyze(), and FourVectorHLT().
double FourVectorHLT::ptMin_ [private] |
Definition at line 79 of file FourVectorHLT.h.
Referenced by analyze(), and FourVectorHLT().
bool FourVectorHLT::resetMe_ [private] |
Definition at line 75 of file FourVectorHLT.h.
int FourVectorHLT::theHLTOutputType [private] |
Definition at line 84 of file FourVectorHLT.h.
MonitorElement* FourVectorHLT::total_ [private] |
Definition at line 72 of file FourVectorHLT.h.
Definition at line 86 of file FourVectorHLT.h.
Definition at line 85 of file FourVectorHLT.h.
Referenced by analyze(), and FourVectorHLT().