CMS 3D CMS Logo

SUSY_HLT_MuonFakes.cc
Go to the documentation of this file.
7 
8 
10 {
11  edm::LogInfo("SUSY_HLT_MuonFakes") << "Constructor SUSY_HLT_MuonFakes::SUSY_HLT_MuonFakes " << std::endl;
12  // Get parameters from configuration file
13  theTrigSummary_ = consumes<trigger::TriggerEvent>(ps.getParameter<edm::InputTag>("trigSummary"));
14  triggerResults_ = consumes<edm::TriggerResults>(ps.getParameter<edm::InputTag>("TriggerResults"));
15  HLTProcess_ = ps.getParameter<std::string>("HLTProcess");
16  triggerPath_ = ps.getParameter<std::string>("TriggerPath");
17  triggerFilter_ = ps.getParameter<edm::InputTag>("TriggerFilter");
18 }
19 
21 {
22  edm::LogInfo("SUSY_HLT_MuonFakes") << "Destructor SUSY_HLT_MuonFakes::~SUSY_HLT_MuonFakes " << std::endl;
23 }
24 
26 {
27 
28  bool changed;
29 
30  if (!fHltConfig.init(run, e, HLTProcess_, changed)) {
31  edm::LogError("SUSY_HLT_MuonFakes") << "Initialization of HLTConfigProvider failed!!";
32  return;
33  }
34 
35  bool pathFound = false;
36  const std::vector<std::string> allTrigNames = fHltConfig.triggerNames();
37  for(size_t j = 0; j <allTrigNames.size(); ++j) {
38  if(allTrigNames[j].find(triggerPath_) != std::string::npos) {
39  pathFound = true;
40  }
41  }
42 
43  if(!pathFound) {
44  edm::LogInfo ("SUSY_HLT_MuonFakes") << "Path not found" << "\n";
45  return;
46  }
47  edm::LogInfo("SUSY_HLT_MuonFakes") << "SUSY_HLT_MuonFakes::beginRun" << std::endl;
48 }
49 
51 {
52  edm::LogInfo("SUSY_HLT_MuonFakes") << "SUSY_HLT_MuonFakes::bookHistograms" << std::endl;
53  //book at beginRun
54  bookHistos(ibooker_);
55 }
56 
58  edm::EventSetup const& context)
59 {
60  edm::LogInfo("SUSY_HLT_MuonFakes") << "SUSY_HLT_MuonFakes::beginLuminosityBlock" << std::endl;
61 }
62 
63 
64 
66  edm::LogInfo("SUSY_HLT_MuonFakes") << "SUSY_HLT_MuonFakes::analyze" << std::endl;
67 
68 
69  //-------------------------------
70  //--- Trigger
71  //-------------------------------
73  e.getByToken(triggerResults_,hltresults);
74  if(!hltresults.isValid()){
75  edm::LogError ("SUSY_HLT_MuonFakes") << "invalid collection: TriggerResults" << "\n";
76  return;
77  }
79  e.getByToken(theTrigSummary_, triggerSummary);
80  if(!triggerSummary.isValid()) {
81  edm::LogError ("SUSY_HLT_MuonFakes") << "invalid collection: TriggerSummary" << "\n";
82  return;
83  }
84 
85 
86  //get online objects
87  std::vector<float> ptMuon, etaMuon, phiMuon;
88  size_t filterIndex = triggerSummary->filterIndex( triggerFilter_ );
90  if( !(filterIndex >= triggerSummary->sizeFilters()) ){
91  const trigger::Keys& keys = triggerSummary->filterKeys( filterIndex );
92  for( size_t j = 0; j < keys.size(); ++j ){
93  trigger::TriggerObject foundObject = triggerObjects[keys[j]];
94  if(foundObject.id() == 13){ //Muons check number
95  h_triggerMuPt->Fill(foundObject.pt());
96  h_triggerMuEta->Fill(foundObject.eta());
97  h_triggerMuPhi->Fill(foundObject.phi());
98  ptMuon.push_back(foundObject.pt());
99  etaMuon.push_back(foundObject.eta());
100  phiMuon.push_back(foundObject.phi());
101  }
102  }
103  }
104 
105 
106 // bool hasFired = false;
107 // const edm::TriggerNames& trigNames = e.triggerNames(*hltresults);
108 // unsigned int numTriggers = trigNames.size();
109 // for( unsigned int hltIndex=0; hltIndex<numTriggers; ++hltIndex ){
110 // if (trigNames.triggerName(hltIndex)==triggerPath_ && hltresults->wasrun(hltIndex) && hltresults->accept(hltIndex)) hasFired = true;
111 // }
112 
113 }
114 
115 
117 {
118  edm::LogInfo("SUSY_HLT_MuonFakes") << "SUSY_HLT_MuonFakes::endLuminosityBlock" << std::endl;
119 }
120 
121 
123 {
124  edm::LogInfo("SUSY_HLT_MuonFakes") << "SUSY_HLT_MuonFakes::endRun" << std::endl;
125 }
126 
128 {
129  ibooker_.cd();
130  ibooker_.setCurrentFolder("HLT/SUSYBSM/" + triggerPath_);
131 
132  //online quantities
133  h_triggerMuPt = ibooker_.book1D("triggerMuPt", "Trigger Mu Pt; GeV", 40, 0.0, 80.0);
134  h_triggerMuEta = ibooker_.book1D("triggerMuEta", "Trigger Mu Eta", 20, -2.5, 2.5);
135  h_triggerMuPhi = ibooker_.book1D("triggerMuPhi", "Trigger Mu Phi", 20, -3.5, 3.5);
136 
137 
138  //num and den hists to be divided in harvesting step to make turn on curves
139  ibooker_.cd();
140 }
141 
142  //define this as a plug-in
void dqmBeginRun(edm::Run const &, edm::EventSetup const &) override
T getParameter(std::string const &) const
SUSY_HLT_MuonFakes(const edm::ParameterSet &ps)
void bookHistos(DQMStore::IBooker &)
int id() const
getters
Definition: TriggerObject.h:55
trigger::size_type sizeFilters() const
Definition: TriggerEvent.h:135
HLTConfigProvider fHltConfig
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:519
float phi() const
Definition: TriggerObject.h:58
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:17
const std::vector< std::string > & triggerNames() const
names of trigger paths
const Keys & filterKeys(trigger::size_type index) const
Definition: TriggerEvent.h:111
trigger::size_type filterIndex(const edm::InputTag &filterTag) const
find index of filter in data-member vector from filter tag
Definition: TriggerEvent.h:123
MonitorElement * h_triggerMuEta
float eta() const
Definition: TriggerObject.h:57
edm::EDGetTokenT< edm::TriggerResults > triggerResults_
void find(edm::Handle< EcalRecHitCollection > &hits, DetId thisDet, std::vector< EcalRecHitCollection::const_iterator > &hit, bool debug=false)
Definition: FindCaloHit.cc:20
void bookHistograms(DQMStore::IBooker &, edm::Run const &, edm::EventSetup const &) override
void Fill(long long x)
Single trigger physics object (e.g., an isolated muon)
Definition: TriggerObject.h:22
void endLuminosityBlock(edm::LuminosityBlock const &lumi, edm::EventSetup const &eSetup) override
edm::InputTag triggerFilter_
const TriggerObjectCollection & getObjects() const
Definition: TriggerEvent.h:98
MonitorElement * book1D(Args &&...args)
Definition: DQMStore.h:118
void analyze(edm::Event const &e, edm::EventSetup const &eSetup) override
bool isValid() const
Definition: HandleBase.h:74
edm::EDGetTokenT< trigger::TriggerEvent > theTrigSummary_
std::vector< TriggerObject > TriggerObjectCollection
collection of trigger physics objects (e.g., all isolated muons)
Definition: TriggerObject.h:81
MonitorElement * h_triggerMuPhi
void setCurrentFolder(const std::string &fullpath)
Definition: DQMStore.cc:279
MonitorElement * h_triggerMuPt
std::vector< size_type > Keys
bool init(const edm::Run &iRun, const edm::EventSetup &iSetup, const std::string &processName, bool &changed)
d&#39;tor
void endRun(edm::Run const &run, edm::EventSetup const &eSetup) override
void beginLuminosityBlock(edm::LuminosityBlock const &lumi, edm::EventSetup const &eSetup) override
~SUSY_HLT_MuonFakes() override
Definition: Run.h:43