Definition at line 63 of file HLTOfflineReproducibilityDQM.cc.
HLTOfflineReproducibilityDQM::HLTOfflineReproducibilityDQM | ( | const edm::ParameterSet & | iConfig | ) | [explicit] |
Definition at line 136 of file HLTOfflineReproducibilityDQM.cc.
References dqms_, and cmsCodeRules::cppFunctionSkipper::operator.
: triggerLabelORIG_ (iConfig.getUntrackedParameter<edm::InputTag>("triggerTagORIG")), triggerLabelNEW_ (iConfig.getUntrackedParameter<edm::InputTag>("triggerTagNEW")), nPaths_ (0), nDatasets_ (0), triggerNames_ (), moduleLabel_ (), nModules_ (), nPaths_PD_ (), datasetNames_ (), datasetContent_ (), triggerNames_matched_ (), processNameORIG_(iConfig.getParameter<std::string>("processNameORIG")), processNameNEW_ (iConfig.getParameter<std::string>("processNameNEW")), Nfiles_ (iConfig.getUntrackedParameter<int>("Nfiles",0)), Normalization_ (iConfig.getUntrackedParameter<double>("Norm",40.)), isRealData_ (iConfig.getUntrackedParameter<bool>("isRealData",true)), LumiSecNumber_ (iConfig.getUntrackedParameter<int>("LumiSecNumber",1)), path_ORIG_hist (0), path_ORIGnotNEW_hist (0), path_NEWnotORIG_hist (0), pathmodule_ORIGnotNEW_hist(0), pathmodule_NEWnotORIG_hist(0), path_ORIG_hist_PD (), path_ORIGnotNEW_hist_PD (), path_NEWnotORIG_hist_PD (), pathmodule_ORIGnotNEW_hist_PD(), pathmodule_NEWnotORIG_hist_PD() { //now do what ever initialization is needed //define parameters dqms_ = edm::Service<DQMStore>().operator->(); }
HLTOfflineReproducibilityDQM::~HLTOfflineReproducibilityDQM | ( | ) |
Definition at line 172 of file HLTOfflineReproducibilityDQM.cc.
{ // do anything here that needs to be done at desctruction time // (e.g. close files, deallocate resources etc.) }
void HLTOfflineReproducibilityDQM::analyze | ( | const edm::Event & | iEvent, |
const edm::EventSetup & | iSetup | ||
) | [private, virtual] |
Implements edm::EDAnalyzer.
Definition at line 187 of file HLTOfflineReproducibilityDQM.cc.
References a, b, gather_cfg::cout, edm::EventID::event(), MonitorElement::Fill(), edm::Event::getByLabel(), hltConfig_, i, edm::EventBase::id(), j, edm::EventBase::luminosityBlock(), HLTConfigProvider::moduleIndex(), moduleLabel_, moduleLabelNEW_, moduleLabelORIG_, HLTConfigProvider::moduleType(), nDatasets_, nModules_, nPaths_, nPaths_PD_, nPathsNEW_, nPathsORIG_, path_NEWnotORIG_hist, path_NEWnotORIG_hist_PD, path_ORIG_hist, path_ORIG_hist_PD, path_ORIGnotNEW_hist, path_ORIGnotNEW_hist_PD, pathmodule_NEWnotORIG_hist, pathmodule_NEWnotORIG_hist_PD, pathmodule_ORIGnotNEW_hist, pathmodule_ORIGnotNEW_hist_PD, edm::EventID::run(), trigger_NEW_, trigger_ORIG_, triggerLabelNEW_, triggerLabelORIG_, triggerNames_, triggerNames_matched_, and x.
{ using namespace edm; //cout <<"Run/Event/Lumi block "<< iEvent.id().run()<<" "<<iEvent.id().event()<<" "<<iEvent.luminosityBlock() <<endl; //Initialize Trigger TriggerResults trORIG_; Handle<TriggerResults> h_trigResORIG_; iEvent.getByLabel(triggerLabelORIG_, h_trigResORIG_); trORIG_ = *h_trigResORIG_; TriggerResults trNEW_; Handle<TriggerResults> h_trigResNEW_; iEvent.getByLabel(triggerLabelNEW_, h_trigResNEW_); trNEW_ = *h_trigResNEW_; vector<string> triggerListORIG_; Service<service::TriggerNamesService> tnsORIG_; bool foundNamesORIG_ = tnsORIG_->getTrigPaths(trORIG_,triggerListORIG_); if (!foundNamesORIG_) cout << "Could not get trigger names!\n"; if (trORIG_.size()!=triggerListORIG_.size()) cout << "ERROR: length of names and paths not the same: " << triggerListORIG_.size() << "," << trORIG_.size() << endl; vector<string> triggerListNEW_; Service<service::TriggerNamesService> tnsNEW_; bool foundNamesNEW_ = tnsNEW_->getTrigPaths(trNEW_,triggerListNEW_); if (!foundNamesNEW_) cout << "Could not get trigger names!\n"; if (trNEW_.size()!=triggerListNEW_.size()) cout << "ERROR: length of names and paths not the same: " << triggerListNEW_.size() << "," << trNEW_.size() << endl; vector<bool> ORIG_accept_, NEW_accept_, fails_prescaler_; vector<int> module_indexORIG_, module_indexNEW_; vector<string> module_index_labelORIG_, module_index_labelNEW_; for (unsigned int x=0; x<nPaths_; x++) { ORIG_accept_.push_back(false); NEW_accept_.push_back(false); module_indexORIG_.push_back(-1); module_indexNEW_.push_back(-1); module_index_labelORIG_.push_back(" "); module_index_labelNEW_.push_back(" "); fails_prescaler_.push_back(false); } //loop over ORIG trigger paths for (unsigned int i=0; i<nPathsORIG_; i++) { for (unsigned int x=0; x<nPaths_; x++) { //match to list of paths that are in common to both ORIG and NEW if (triggerListORIG_.at(i)==triggerNames_.at(x)) { //if ORIG accepted if (trORIG_.at(i).wasrun()==1 && trORIG_.at(i).accept()==1 && trORIG_.at(i).error()==0) { ORIG_accept_.at(x) = true; trigger_ORIG_.at(x)++; path_ORIG_hist->Fill(x); for (unsigned int a=0; a<nDatasets_; a++) { for (unsigned int b=0; b<nPaths_PD_.at(a); b++) { if (triggerNames_matched_.at(i).at(a).at(b)) path_ORIG_hist_PD.at(a)->Fill(b); } } } //if ORIG failed if (trORIG_.at(i).accept() == 0){ module_index_labelORIG_.at(x) = moduleLabelORIG_.at(i)[trORIG_.at(i).index()]; module_indexORIG_.at(x) = hltConfig_.moduleIndex(triggerNames_.at(x),module_index_labelORIG_.at(x)); } //for each path, loop over modules and find if a path fails on a prescaler for (unsigned int j=0; j<nModules_.at(x); ++j) { const string& moduleType = hltConfig_.moduleType(moduleLabel_.at(x).at(j)); if ( (trORIG_.at(i).accept()==0 && j==trORIG_.at(i).index()) && (moduleType=="HLTPrescaler" || moduleType=="TriggerResultsFilter") ) fails_prescaler_.at(x) = true; } } } } //loop over NEW trigger paths for (unsigned int i=0; i<nPathsNEW_; i++) { for (unsigned int x=0; x<nPaths_; x++) { //match to list of paths that are in common to both ORIG and NEW if (triggerListNEW_.at(i)==triggerNames_.at(x)) { //if NEW accepted if (trNEW_.at(i).wasrun()==1 && trNEW_.at(i).accept()==1 && trNEW_.at(i).error()==0) { NEW_accept_.at(x) = true; trigger_NEW_.at(x)++; } //if NEW failed if (trNEW_.at(i).accept() == 0) { module_index_labelNEW_.at(x) = moduleLabelNEW_.at(i)[trNEW_.at(i).index()]; module_indexNEW_.at(x) = hltConfig_.moduleIndex(triggerNames_.at(x),module_index_labelNEW_.at(x)); } //for each path, loop over modules and find if a path fails on a prescaler for (unsigned int j=0; j<nModules_.at(x); ++j) { const string& moduleType = hltConfig_.moduleType(moduleLabel_.at(x).at(j)); if ( (trNEW_.at(i).accept()==0 && j==trNEW_.at(i).index()) && (moduleType=="HLTPrescaler" || moduleType=="TriggerResultsFilter") ) fails_prescaler_.at(x) = true; } } } } //check agreement between ORIG and NEW //loop over trigger paths common to both ORIG and NEW for (unsigned int x=0; x<nPaths_; x++) { if (!fails_prescaler_.at(x)){ //ignore paths that fail on a prescale if(ORIG_accept_.at(x) && !NEW_accept_.at(x)){ //ORIG fires but NEW doesn't path_ORIGnotNEW_hist->Fill(x); pathmodule_ORIGnotNEW_hist->Fill(x,module_indexNEW_.at(x)); //module and path for where it fails in NEW cout<<" Event "<<iEvent.id().event()<<" in run "<<iEvent.id().run()<<" and luminosity block "<<iEvent.luminosityBlock()<<endl; cout<<" fires in ORIG but not NEW!!"<<endl; cout<<" Path is: "<<triggerNames_.at(x)<<", last run module is: "<<module_index_labelNEW_.at(x)<<endl; for (unsigned int a=0; a<nDatasets_; a++) { for (unsigned int b=0; b<nPaths_PD_.at(a); b++) { if (triggerNames_matched_.at(x).at(a).at(b)){ path_ORIGnotNEW_hist_PD.at(a)->Fill(b); pathmodule_ORIGnotNEW_hist_PD.at(a)->Fill(b,module_indexNEW_.at(x)); //module and path for where it fails in NEW } } } } if(!ORIG_accept_.at(x) && NEW_accept_.at(x)){//NEW fires but ORIG doesn't path_NEWnotORIG_hist->Fill(x); pathmodule_NEWnotORIG_hist->Fill(x,module_indexORIG_.at(x)); //module and path for where it fails ORIG cout<<" Event "<<iEvent.id().event()<<" in run "<<iEvent.id().run()<<" and luminosity block "<<iEvent.luminosityBlock()<<endl; cout<<" fires in NEW but not ORIG!!"<<endl; cout<<" Path is: "<<triggerNames_.at(x)<<", last run module is: "<<module_index_labelORIG_.at(x)<<endl; for (unsigned int a=0; a<nDatasets_; a++) { for (unsigned int b=0; b<nPaths_PD_.at(a); b++) { if (triggerNames_matched_.at(x).at(a).at(b)){ path_NEWnotORIG_hist_PD.at(a)->Fill(b); pathmodule_NEWnotORIG_hist_PD.at(a)->Fill(b,module_indexORIG_.at(x)); //module and path for where it fails ORIG } } } } } }//end of loop over trigger paths //const vector<string> & moduleLabels(hltConfig_.moduleLabels(i)); //const string& moduleLabel_(moduleLabel.at(j)); }
void HLTOfflineReproducibilityDQM::beginJob | ( | void | ) | [private, virtual] |
Reimplemented from edm::EDAnalyzer.
Definition at line 343 of file HLTOfflineReproducibilityDQM.cc.
{ }
void HLTOfflineReproducibilityDQM::beginLuminosityBlock | ( | edm::LuminosityBlock const & | , |
edm::EventSetup const & | |||
) | [private, virtual] |
Reimplemented from edm::EDAnalyzer.
Definition at line 628 of file HLTOfflineReproducibilityDQM.cc.
{ }
void HLTOfflineReproducibilityDQM::beginRun | ( | edm::Run const & | iRun, |
edm::EventSetup const & | iSetup | ||
) | [private, virtual] |
Reimplemented from edm::EDAnalyzer.
Definition at line 355 of file HLTOfflineReproducibilityDQM.cc.
References a, b, DQMStore::book1D(), DQMStore::book2D(), gather_cfg::cout, HLTConfigProvider::datasetContent(), datasetContent_, HLTConfigProvider::datasetNames(), datasetNames_, dqms_, hltConfig_, i, init, HLTConfigProvider::init(), j, HLTConfigProvider::moduleLabel(), moduleLabel_, moduleLabelNEW_, moduleLabelORIG_, HLTConfigProvider::moduleLabels(), HLTConfigProvider::moduleType(), nDatasets_, nModules_, nPaths_, nPaths_PD_, nPathsNEW_, nPathsORIG_, path_NEWnotORIG_hist, path_NEWnotORIG_hist_PD, path_ORIG_hist, path_ORIG_hist_PD, path_ORIGnotNEW_hist, path_ORIGnotNEW_hist_PD, pathmodule_NEWnotORIG_hist, pathmodule_NEWnotORIG_hist_PD, pathmodule_ORIGnotNEW_hist, pathmodule_ORIGnotNEW_hist_PD, processNameNEW_, processNameORIG_, DQMStore::setCurrentFolder(), HLTConfigProvider::size(), trigger_NEW_, trigger_ORIG_, HLTConfigProvider::triggerNames(), triggerNames_, and triggerNames_matched_.
{ void init(const edm::TriggerResults &, const edm::TriggerNames & HLTNames); bool changed(true); nPathsORIG_=0, nPathsNEW_=0; vector<string> triggerNamesORIG_, triggerNamesNEW_; vector<string> temp_; unsigned int max_nModules_=0; vector<unsigned int> max_nModules_PD_, nModules_diff_; bool TriggerModuleNamesOK_ = true; //---------------------------------------hltConfig for ORIG------------------------------- if (hltConfig_.init(iRun,iSetup,processNameORIG_,changed)) { // if init returns TRUE, initialisation has succeeded! if (changed) { cout<<"hlt_Config_.init returns true for ORIG"<<endl; // The HLT config has actually changed wrt the previous Run, hence rebook your // histograms or do anything else dependent on the revised HLT config // check if trigger name in (new) config triggerNamesORIG_ = hltConfig_.triggerNames(); //loop over trigger paths nPathsORIG_ = hltConfig_.size(); for (unsigned int i=0; i<nPathsORIG_; i++) { temp_.clear(); //const vector<string> & moduleLabelsORIG(hltConfig_.moduleLabels(i)); for (unsigned int j=0; j<hltConfig_.moduleLabels(i).size(); j++) { temp_.push_back(hltConfig_.moduleLabel(i,j)); } moduleLabelORIG_.push_back(temp_); } } } else { // if init returns FALSE, initialisation has NOT succeeded, which indicates a problem // with the file and/or code and needs to be investigated! cout<<" HLT config extraction failure with process name " << processNameORIG_; // In this case, all access methods will return empty values! } //-------------------hltConfig for NEW---------------------------------------- if (hltConfig_.init(iRun,iSetup,processNameNEW_,changed)) { // if init returns TRUE, initialisation has succeeded! if (changed) { cout<<"hlt_Config_.init returns true for NEW"<<endl; // The HLT config has actually changed wrt the previous Run, hence rebook your // histograms or do anything else dependent on the revised HLT config // check if trigger name in (new) config triggerNamesNEW_ = hltConfig_.triggerNames(); //loop over trigger paths nPathsNEW_ = hltConfig_.size(); for (unsigned int i=0; i<nPathsNEW_; i++) { temp_.clear(); for (unsigned int j=0; j<hltConfig_.moduleLabels(i).size(); j++){ temp_.push_back(hltConfig_.moduleLabel(i,j)); } moduleLabelNEW_.push_back(temp_); } } } else { // if init returns FALSE, initialisation has NOT succeeded, which indicates a problem // with the file and/or code and needs to be investigated! cout<<" HLT config extraction failure with process name " << processNameNEW_; // In this case, all access methods will return empty values! } //------------------compare ORIG and NEW hltConfig------------------------ if (nPathsORIG_==0 || nPathsNEW_==0){ cout<<"There are 0 paths ORIG or in NEW!! There are "<<nPathsORIG_<<" paths ORIG and "<<nPathsNEW_<<" paths in NEW!!!"<<endl; TriggerModuleNamesOK_ = false; } else{ //define nPaths_ as number of paths shared between ORIG and NEW if (nPathsORIG_<=nPathsNEW_) nPaths_=nPathsORIG_; else nPaths_=nPathsNEW_; for (unsigned int i=0; i<nPathsORIG_; i++) { for (unsigned int j=0; j<nPathsNEW_; j++) { //match ORIG and NEW paths if (triggerNamesORIG_.at(i)==triggerNamesNEW_.at(j)){ triggerNames_.push_back(triggerNamesORIG_.at(i)); if (i!=j) cout<<"Path "<<triggerNamesORIG_.at(i)<<" corresponds to path number "<<i<<" for ORIG and path number "<<j<<" for NEW"<<endl; //define nModules_ as number of modules shared between ORIG and in NEW if (moduleLabelORIG_.at(i).size()<=moduleLabelNEW_.at(j).size()) nModules_.push_back(moduleLabelORIG_.at(i).size()); else nModules_.push_back(moduleLabelNEW_.at(j).size()); //define max number of modules over all the paths if (nModules_.at(i)>max_nModules_) max_nModules_=nModules_.at(i); //define the abs(number_of_modules_run_in_ORIG_for_this_path - number_of_modules_run_in_NEW_for_this_path) if (moduleLabelORIG_.at(i).size()>moduleLabelNEW_.at(j).size()) nModules_diff_.push_back(moduleLabelORIG_.at(i).size()-moduleLabelNEW_.at(j).size()); else nModules_diff_.push_back(moduleLabelNEW_.at(j).size()-moduleLabelORIG_.at(i).size()); temp_.clear(); for (unsigned int a=0; a<moduleLabelORIG_.at(i).size(); a++) { for (unsigned int b=0; b<moduleLabelNEW_.at(j).size(); b++) { //match ORIG and NEW modules //since a module can be run twice per path, but not usually right after one another, //require that a and b be fairly close to each other, +/- the difference in the number of modules run in ORIG vs NEW, //to avoid double-counting modules that are repeated later in the path //also, since we need to work with unsigned ints, a or b could also be 0, ignoring the requirement described above if (moduleLabelORIG_.at(i).at(a)==moduleLabelNEW_.at(j).at(b) && ( (b<=a+nModules_diff_.at(i) && b>=a-nModules_diff_.at(i)) || (a==0 || b==0) ) ){ temp_.push_back(moduleLabelORIG_.at(i).at(a)); if (a!=b){ cout<<"For path "<<triggerNamesORIG_.at(i)<<" in ORIG and "<<triggerNamesNEW_.at(j)<<" in NEW:"<<endl; cout<<" module "<<moduleLabelORIG_.at(i).at(a)<<" corresponds to module number "<<a<<" for ORIG and module number "<<b<<" for NEW"<<endl; } } } } moduleLabel_.push_back(temp_); } } } } //---------------------------------------------------------------------------------------------------------- //if everything is good: //save path and module names to be used in event loop, print out the module names and types for each path //get paths in each dataset if (TriggerModuleNamesOK_){ //------------all paths-------------- cout<<"There are "<<nPaths_<<" paths in total"<<endl; cout<<"Maximum number of modules over all paths is: "<<max_nModules_<<endl; for (unsigned int i=0; i<nPaths_; i++) { trigger_ORIG_.push_back(0); trigger_NEW_.push_back(0); cout<<endl<<"For "<<triggerNames_.at(i)<<" (trigger number "<<i<<"), there are "<<nModules_.at(i)<<" modules:"<<endl; for (unsigned int j=0; j<nModules_.at(i); j++) { const string& moduleType_ = hltConfig_.moduleType(moduleLabel_.at(i).at(j)); cout<<" module "<<j<<" is "<<moduleLabel_.at(i).at(j)<<" and is of type "<<moduleType_<<endl; } } //---------paths per dataset------------------------------------------- //get datasets, initialize max_nModules_PD_ datasetNames_ = hltConfig_.datasetNames(); nDatasets_ = datasetNames_.size(); for (unsigned int a=0; a<nDatasets_; a++) { max_nModules_PD_.push_back(0); } //loop over datasets, paths in each dataset for (unsigned int a=0; a<nDatasets_; a++) { temp_.clear(); vector<string> datasetcontent_ = hltConfig_.datasetContent(a); nPaths_PD_.push_back(datasetcontent_.size()); cout<<endl<<"For dataset "<<datasetNames_.at(a)<<" (dataset number "<<a<<"), there are "<<nPaths_PD_.at(a)<<" paths:"<<endl; for (unsigned int b=0; b<nPaths_PD_.at(a); b++) { cout<<" path "<<b<<" is "<<datasetcontent_.at(b)<<endl; temp_.push_back(datasetcontent_.at(b)); } datasetContent_.push_back(temp_); } //match trigger names in full list to trigger names per dataset; find max number of modules over all triggers in each dataset //find matches vector <vector<bool> > temp1_; vector<bool> temp2_; for (unsigned int i=0; i<nPaths_; i++) { temp1_.clear(); for (unsigned int a=0; a<nDatasets_; a++) { temp2_.clear(); for (unsigned int b=0; b<nPaths_PD_.at(a); b++) { if (triggerNames_.at(i)==datasetContent_.at(a).at(b)){ temp2_.push_back(true); //cout<<"Matched trigger name is: "<<datasetContent_.at(a).at(b)<<" for dataset "<<a<<" and dataset path "<<b<<endl; } else temp2_.push_back(false); } temp1_.push_back(temp2_); } triggerNames_matched_.push_back(temp1_); } //if matched and # of modules is bigger than all previous ones, take that number as new maximum for (unsigned int i=0; i<nPaths_; i++) { for (unsigned int a=0; a<nDatasets_; a++) { for (unsigned int b=0; b<nPaths_PD_.at(a); b++) { if (triggerNames_matched_.at(i).at(a).at(b) && nModules_.at(i)>max_nModules_PD_.at(a)) max_nModules_PD_.at(a)=nModules_.at(i); } } } //for (unsigned int a=0; a<nDatasets_; a++) { //cout<<"For dataset "<<datasetNames_.at(a)<<", the max number of modules is: "<<max_nModules_PD_.at(a)<<endl; //} }//end if all triggers and modules match from ORIG to NEW //---------------------------------------------------------------------------------------------------------- //define histograms if (!dqms_) return; //all paths dqms_->setCurrentFolder("DQMExample/DQMSource_HLTOfflineReproducibility"); path_ORIG_hist = dqms_->book1D("path_ORIG_hist","Total Times Path Fires in ORIG",nPaths_,0,nPaths_); path_ORIGnotNEW_hist = dqms_->book1D("path_ORIGnotNEW_hist","Path fires in ORIG but not in NEW",nPaths_,0,nPaths_); path_NEWnotORIG_hist = dqms_->book1D("path_NEWnotORIG_hist","Path fires in NEW but not in ORIG",nPaths_,0,nPaths_); pathmodule_ORIGnotNEW_hist = dqms_->book2D("pathmodule_ORIGnotNEW_hist","Last run module index vs Path for NEW, when ORIG fired but NEW didn't",nPaths_,0,nPaths_,max_nModules_,0,max_nModules_); pathmodule_NEWnotORIG_hist = dqms_->book2D("pathmodule_NEWnotORIG_hist","Last run module index vs Path for ORIG, when NEW fired but ORIG didn't",nPaths_,0,nPaths_,max_nModules_,0,max_nModules_); //paths per dataset char folder_name[500]; char path_ORIG_name[100], path_ORIGnotNEW_name[100], path_NEWnotORIG_name[100], pathmodule_ORIGnotNEW_name[100], pathmodule_NEWnotORIG_name[100]; for (unsigned int a=0; a<nDatasets_; a++) { sprintf(folder_name,"DQMExample/DQMSource_HLTOfflineReproducibility/%s",datasetNames_.at(a).c_str()); dqms_->setCurrentFolder(folder_name); snprintf(path_ORIG_name, 100, "path_ORIG_hist_%s", datasetNames_.at(a).c_str()); snprintf(path_ORIGnotNEW_name, 100, "path_ORIGnotNEW_hist_%s", datasetNames_.at(a).c_str()); snprintf(path_NEWnotORIG_name, 100, "path_NEWnotORIG_hist_%s", datasetNames_.at(a).c_str()); snprintf(pathmodule_ORIGnotNEW_name, 100, "pathmodule_ORIGnotNEW_hist_%s", datasetNames_.at(a).c_str()); snprintf(pathmodule_NEWnotORIG_name, 100, "pathmodule_NEWnotORIG_hist_%s", datasetNames_.at(a).c_str()); TString path_ORIG_title = "Total Times Path Fires ORIG (" + datasetNames_.at(a) + " dataset)"; TString path_ORIGnotNEW_title = "Path fires in ORIG but not in NEW (" + datasetNames_.at(a) + " dataset)"; TString path_NEWnotORIG_title = "Path fires in NEW but not in ORIG (" + datasetNames_.at(a) + " dataset)"; TString pathmodule_ORIGnotNEW_title = "Last run module index vs Path for NEW, when ORIG fired but NEW didn't (" + datasetNames_.at(a) + " dataset)"; TString pathmodule_NEWnotORIG_title = "Last run module index vs Path for ORIG, when NEW fired but ORIG didn't (" + datasetNames_.at(a) + " dataset)"; path_ORIG_hist_PD.push_back(dqms_->book1D(path_ORIG_name,path_ORIG_title,nPaths_PD_.at(a),0,nPaths_PD_.at(a))); path_ORIGnotNEW_hist_PD.push_back(dqms_->book1D(path_ORIGnotNEW_name,path_ORIGnotNEW_title,nPaths_PD_.at(a),0,nPaths_PD_.at(a))); path_NEWnotORIG_hist_PD.push_back(dqms_->book1D(path_NEWnotORIG_name,path_NEWnotORIG_title,nPaths_PD_.at(a),0,nPaths_PD_.at(a))); pathmodule_ORIGnotNEW_hist_PD.push_back(dqms_->book2D(pathmodule_ORIGnotNEW_name,pathmodule_ORIGnotNEW_title,nPaths_PD_.at(a),0,nPaths_PD_.at(a),max_nModules_PD_.at(a),0,max_nModules_PD_.at(a))); pathmodule_NEWnotORIG_hist_PD.push_back(dqms_->book2D(pathmodule_NEWnotORIG_name,pathmodule_NEWnotORIG_title,nPaths_PD_.at(a),0,nPaths_PD_.at(a),max_nModules_PD_.at(a),0,max_nModules_PD_.at(a))); } }
bool HLTOfflineReproducibilityDQM::check | ( | std::string | process, |
std::string | pCheck | ||
) | [private] |
void HLTOfflineReproducibilityDQM::endJob | ( | void | ) | [private, virtual] |
Reimplemented from edm::EDAnalyzer.
Definition at line 349 of file HLTOfflineReproducibilityDQM.cc.
{ }
void HLTOfflineReproducibilityDQM::endLuminosityBlock | ( | edm::LuminosityBlock const & | , |
edm::EventSetup const & | |||
) | [private, virtual] |
Reimplemented from edm::EDAnalyzer.
Definition at line 634 of file HLTOfflineReproducibilityDQM.cc.
{ }
void HLTOfflineReproducibilityDQM::endRun | ( | edm::Run const & | , |
edm::EventSetup const & | |||
) | [private, virtual] |
Reimplemented from edm::EDAnalyzer.
Definition at line 600 of file HLTOfflineReproducibilityDQM.cc.
References a, b, gather_cfg::cout, datasetContent_, MonitorElement::getTH1F(), MonitorElement::getTH2F(), i, nDatasets_, nPaths_, nPaths_PD_, path_NEWnotORIG_hist, path_NEWnotORIG_hist_PD, path_ORIG_hist, path_ORIG_hist_PD, path_ORIGnotNEW_hist, path_ORIGnotNEW_hist_PD, pathmodule_NEWnotORIG_hist, pathmodule_NEWnotORIG_hist_PD, pathmodule_ORIGnotNEW_hist, pathmodule_ORIGnotNEW_hist_PD, trigger_NEW_, trigger_ORIG_, and triggerNames_.
{ //all paths cout<<endl; for (unsigned int i=0; i<nPaths_; i++) { cout<<triggerNames_.at(i)<<" ORIG accepts: "<<trigger_ORIG_.at(i)<<", NEW accepts: "<<trigger_NEW_.at(i)<<endl; path_ORIG_hist->getTH1F()->GetXaxis()->SetBinLabel(i+1,triggerNames_.at(i).c_str()); path_ORIGnotNEW_hist->getTH1F()->GetXaxis()->SetBinLabel(i+1,triggerNames_.at(i).c_str()); path_NEWnotORIG_hist->getTH1F()->GetXaxis()->SetBinLabel(i+1,triggerNames_.at(i).c_str()); pathmodule_ORIGnotNEW_hist->getTH2F()->GetXaxis()->SetBinLabel(i+1,triggerNames_.at(i).c_str()); pathmodule_NEWnotORIG_hist->getTH2F()->GetXaxis()->SetBinLabel(i+1,triggerNames_.at(i).c_str()); } //paths per dataset for (unsigned int a=0; a<nDatasets_; a++) { for (unsigned int b=0; b<nPaths_PD_.at(a); b++) { path_ORIG_hist_PD.at(a)->getTH1F()->GetXaxis()->SetBinLabel(b+1,datasetContent_.at(a).at(b).c_str()); path_ORIGnotNEW_hist_PD.at(a)->getTH1F()->GetXaxis()->SetBinLabel(b+1,datasetContent_.at(a).at(b).c_str()); path_NEWnotORIG_hist_PD.at(a)->getTH1F()->GetXaxis()->SetBinLabel(b+1,datasetContent_.at(a).at(b).c_str()); pathmodule_ORIGnotNEW_hist_PD.at(a)->getTH2F()->GetXaxis()->SetBinLabel(b+1,datasetContent_.at(a).at(b).c_str()); pathmodule_NEWnotORIG_hist_PD.at(a)->getTH2F()->GetXaxis()->SetBinLabel(b+1,datasetContent_.at(a).at(b).c_str()); } } }
void HLTOfflineReproducibilityDQM::fillDescriptions | ( | edm::ConfigurationDescriptions & | descriptions | ) | [static] |
Reimplemented from edm::EDAnalyzer.
Definition at line 640 of file HLTOfflineReproducibilityDQM.cc.
References edm::ConfigurationDescriptions::addDefault(), and edm::ParameterSetDescription::setUnknown().
{ //The following says we do not know what parameters are allowed so do no validation // Please change this to state exactly what you do use, even if it is no parameters edm::ParameterSetDescription desc; desc.setUnknown(); descriptions.addDefault(desc); }
vector<vector<string> > HLTOfflineReproducibilityDQM::datasetContent_ [private] |
Definition at line 95 of file HLTOfflineReproducibilityDQM.cc.
Referenced by beginRun(), and endRun().
vector<string> HLTOfflineReproducibilityDQM::datasetNames_ [private] |
Definition at line 94 of file HLTOfflineReproducibilityDQM.cc.
Referenced by beginRun().
DQMStore* HLTOfflineReproducibilityDQM::dqms_ [private] |
Definition at line 84 of file HLTOfflineReproducibilityDQM.cc.
Referenced by beginRun(), and HLTOfflineReproducibilityDQM().
Definition at line 102 of file HLTOfflineReproducibilityDQM.cc.
Referenced by analyze(), and beginRun().
bool HLTOfflineReproducibilityDQM::isRealData_ [private] |
Definition at line 106 of file HLTOfflineReproducibilityDQM.cc.
int HLTOfflineReproducibilityDQM::LumiSecNumber_ [private] |
Definition at line 107 of file HLTOfflineReproducibilityDQM.cc.
vector< vector<string> > HLTOfflineReproducibilityDQM::moduleLabel_ [private] |
Definition at line 92 of file HLTOfflineReproducibilityDQM.cc.
Referenced by analyze(), and beginRun().
vector< vector<string> > HLTOfflineReproducibilityDQM::moduleLabelNEW_ [private] |
Definition at line 92 of file HLTOfflineReproducibilityDQM.cc.
Referenced by analyze(), and beginRun().
vector< vector<string> > HLTOfflineReproducibilityDQM::moduleLabelORIG_ [private] |
Definition at line 92 of file HLTOfflineReproducibilityDQM.cc.
Referenced by analyze(), and beginRun().
unsigned int HLTOfflineReproducibilityDQM::nDatasets_ [private] |
Definition at line 90 of file HLTOfflineReproducibilityDQM.cc.
Referenced by analyze(), beginRun(), and endRun().
int HLTOfflineReproducibilityDQM::Nfiles_ [private] |
Definition at line 104 of file HLTOfflineReproducibilityDQM.cc.
vector<unsigned int> HLTOfflineReproducibilityDQM::nModules_ [private] |
Definition at line 93 of file HLTOfflineReproducibilityDQM.cc.
Referenced by analyze(), and beginRun().
double HLTOfflineReproducibilityDQM::Normalization_ [private] |
Definition at line 105 of file HLTOfflineReproducibilityDQM.cc.
unsigned int HLTOfflineReproducibilityDQM::nPaths_ [private] |
Definition at line 90 of file HLTOfflineReproducibilityDQM.cc.
Referenced by analyze(), beginRun(), and endRun().
vector<unsigned int> HLTOfflineReproducibilityDQM::nPaths_PD_ [private] |
Definition at line 93 of file HLTOfflineReproducibilityDQM.cc.
Referenced by analyze(), beginRun(), and endRun().
unsigned int HLTOfflineReproducibilityDQM::nPathsNEW_ [private] |
Definition at line 90 of file HLTOfflineReproducibilityDQM.cc.
Referenced by analyze(), and beginRun().
unsigned int HLTOfflineReproducibilityDQM::nPathsORIG_ [private] |
Definition at line 90 of file HLTOfflineReproducibilityDQM.cc.
Referenced by analyze(), and beginRun().
Definition at line 113 of file HLTOfflineReproducibilityDQM.cc.
Referenced by analyze(), beginRun(), and endRun().
vector<MonitorElement*> HLTOfflineReproducibilityDQM::path_NEWnotORIG_hist_PD [private] |
Definition at line 119 of file HLTOfflineReproducibilityDQM.cc.
Referenced by analyze(), beginRun(), and endRun().
Definition at line 111 of file HLTOfflineReproducibilityDQM.cc.
Referenced by analyze(), beginRun(), and endRun().
vector<MonitorElement*> HLTOfflineReproducibilityDQM::path_ORIG_hist_PD [private] |
Definition at line 117 of file HLTOfflineReproducibilityDQM.cc.
Referenced by analyze(), beginRun(), and endRun().
Definition at line 112 of file HLTOfflineReproducibilityDQM.cc.
Referenced by analyze(), beginRun(), and endRun().
vector<MonitorElement*> HLTOfflineReproducibilityDQM::path_ORIGnotNEW_hist_PD [private] |
Definition at line 118 of file HLTOfflineReproducibilityDQM.cc.
Referenced by analyze(), beginRun(), and endRun().
Definition at line 115 of file HLTOfflineReproducibilityDQM.cc.
Referenced by analyze(), beginRun(), and endRun().
vector<MonitorElement*> HLTOfflineReproducibilityDQM::pathmodule_NEWnotORIG_hist_PD [private] |
Definition at line 121 of file HLTOfflineReproducibilityDQM.cc.
Referenced by analyze(), beginRun(), and endRun().
Definition at line 114 of file HLTOfflineReproducibilityDQM.cc.
Referenced by analyze(), beginRun(), and endRun().
vector<MonitorElement*> HLTOfflineReproducibilityDQM::pathmodule_ORIGnotNEW_hist_PD [private] |
Definition at line 120 of file HLTOfflineReproducibilityDQM.cc.
Referenced by analyze(), beginRun(), and endRun().
string HLTOfflineReproducibilityDQM::processNameNEW_ [private] |
Definition at line 99 of file HLTOfflineReproducibilityDQM.cc.
Referenced by beginRun().
string HLTOfflineReproducibilityDQM::processNameORIG_ [private] |
Definition at line 98 of file HLTOfflineReproducibilityDQM.cc.
Referenced by beginRun().
vector<int> HLTOfflineReproducibilityDQM::trigger_NEW_ [private] |
Definition at line 109 of file HLTOfflineReproducibilityDQM.cc.
Referenced by analyze(), beginRun(), and endRun().
vector<int> HLTOfflineReproducibilityDQM::trigger_ORIG_ [private] |
Definition at line 108 of file HLTOfflineReproducibilityDQM.cc.
Referenced by analyze(), beginRun(), and endRun().
Definition at line 101 of file HLTOfflineReproducibilityDQM.cc.
Definition at line 87 of file HLTOfflineReproducibilityDQM.cc.
Referenced by analyze().
Definition at line 86 of file HLTOfflineReproducibilityDQM.cc.
Referenced by analyze().
vector<string> HLTOfflineReproducibilityDQM::triggerNames_ [private] |
Definition at line 91 of file HLTOfflineReproducibilityDQM.cc.
Referenced by analyze(), beginRun(), and endRun().
vector< vector< vector<bool> > > HLTOfflineReproducibilityDQM::triggerNames_matched_ [private] |
Definition at line 96 of file HLTOfflineReproducibilityDQM.cc.
Referenced by analyze(), and beginRun().
Definition at line 100 of file HLTOfflineReproducibilityDQM.cc.