CMS 3D CMS Logo

CandidateTriggerObjectProducer.cc
Go to the documentation of this file.
8 
9 #include "TString.h"
10 #include "TRegexp.h"
11 
12 #include <cassert>
13 
15 
16 
17 //
18 // constructors and destructor
19 //
21  triggerResultsToken_(consumes<edm::TriggerResults>(ps.getParameter<edm::InputTag>("triggerResults"))),
22  triggerEventTag_(ps.getParameter<edm::InputTag>("triggerEvent")),
23  triggerEventToken_(consumes<trigger::TriggerEvent>(triggerEventTag_)),
24  triggerName_(ps.getParameter<std::string>("triggerName")),
25  hltPrescaleProvider_(ps, consumesCollector(), *this)
26 {
27 
28 // cout << "Trigger Object Producer:" << endl
29 // << " TriggerResultsTag = " << triggerResultsTag_.encode() << endl
30 // << " TriggerEventTag = " << triggerEventTag_.encode() << endl;
31 
32  produces<reco::CandidateCollection>();
33 
34 }
35 
37 {
38 }
39 
40 //
41 // member functions
42 //
43 void
45 {
46  using namespace edm;
47 
48  bool changed(false);
49  if(!hltPrescaleProvider_.init(iRun,iSetup,triggerEventTag_.process(),changed) ){
50  edm::LogError( "CandidateTriggerObjectProducer" ) <<
51  "Error! Can't initialize HLTConfigProvider";
52  throw cms::Exception("HLTConfigProvider::init() returned non 0");
53  }
54 
55  return;
56 
57 }
58 
59 // ------------ method called to produce the data ------------
60 void
62 {
63  using namespace edm;
64  using namespace reco;
65  using namespace trigger;
66 
67  std::unique_ptr<reco::CandidateCollection> coll( new reco::CandidateCollection );
68 
69  // get event products
72  edm::LogError( "CandidateTriggerObjectProducer" ) << "CandidateTriggerObjectProducer::analyze: Error in getting TriggerResults product from Event!" ;
73  return;
74  }
77  edm::LogError( "CandidateTriggerObjectProducer" ) << "CandidateTriggerObjectProducer::analyze: Error in getting TriggerEvent product from Event!" ;
78  return;
79  }
80 
82 
83  // sanity check
84  // std::cout << hltConfig.size() << std::endl;
85  // std::cout << triggerResultsHandle_->size() << std::endl;
86  assert(triggerResultsHandle_->size()==hltConfig.size());
87 
88  const unsigned int n(hltConfig.size());
89  std::vector<std::string> activeHLTPathsInThisEvent = hltConfig.triggerNames();
90  std::map<std::string, bool> triggerInMenu;
91  std::map<std::string, bool> triggerUnprescaled;
92 
93  for (std::vector<std::string>::const_iterator iHLT = activeHLTPathsInThisEvent.begin();
94  iHLT != activeHLTPathsInThisEvent.end(); ++iHLT)
95  {
96  //matching with regexp filter name. More than 1 matching filter is allowed
97  if (TString(*iHLT).Contains(TRegexp(TString(triggerName_))))
98  {
99  triggerInMenu[*iHLT] = true;
100  const std::pair<int,int> prescales(hltPrescaleProvider_.prescaleValues(iEvent,iSetup,*iHLT));
101  if (prescales.first * prescales.second == 1)
102  triggerUnprescaled[*iHLT] = true;
103  }
104  }
105 
106  for (std::map<std::string, bool>::const_iterator iMyHLT = triggerInMenu.begin();
107  iMyHLT != triggerInMenu.end(); ++iMyHLT)
108  {
109  //using only unprescaled triggers
110  if (!(iMyHLT->second && triggerUnprescaled[iMyHLT->first]))
111  continue;
112  const unsigned int triggerIndex(hltConfig.triggerIndex(iMyHLT->first));
113 
114  assert(triggerIndex==iEvent.triggerNames(*triggerResultsHandle_).triggerIndex(iMyHLT->first));
115 
116  // abort on invalid trigger name
117  if (triggerIndex>=n) {
118  edm::LogError( "CandidateTriggerObjectProducer" ) << "CandidateTriggerObjectProducer::analyzeTrigger: path "
119  << triggerName_ << " - not found!" ;
120  return;
121  }
122 
123  // modules on this trigger path
124  // const unsigned int m(hltConfig.size(triggerIndex));
125  const std::vector<std::string>& moduleLabels(hltConfig.saveTagsModules(triggerIndex));
126 
127  // Results from TriggerResults product
128  if (!(triggerResultsHandle_->wasrun(triggerIndex)) ||
129  !(triggerResultsHandle_->accept(triggerIndex)) ||
130  (triggerResultsHandle_->error(triggerIndex)))
131  {
132  continue;
133  }
134 
135 // const unsigned int moduleIndex(triggerResultsHandle_->index(triggerIndex));
136 
137 // assert (moduleIndex<m);
138 
139  // Results from TriggerEvent product - Looking only on last filter since trigger is accepted
140  for (unsigned int imodule=0;imodule<moduleLabels.size();++imodule)
141  {
142  const std::string& moduleLabel(moduleLabels[imodule]);
143  const std::string moduleType(hltConfig.moduleType(moduleLabel));
144  //Avoiding L1 seeds
145  if (moduleType.find("Level1GTSeed") != std::string::npos)
146  continue;
147  // check whether the module is packed up in TriggerEvent product
148  const unsigned int filterIndex(triggerEventHandle_->filterIndex(InputTag(moduleLabel,"",triggerEventTag_.process())));
149  if (filterIndex<triggerEventHandle_->sizeFilters()) {
150  // std::cout << " 'L3' filter in slot " << imodule << " - label/type " << moduleLabel << "/" << moduleType << std::endl;
151  const Vids& VIDS (triggerEventHandle_->filterIds(filterIndex));
152  const Keys& KEYS(triggerEventHandle_->filterKeys(filterIndex));
153  const size_type nI(VIDS.size());
154  const size_type nK(KEYS.size());
155  assert(nI==nK);
156  const size_type n(std::max(nI,nK));
157  // std::cout << " " << n << " accepted 'L3' objects found: " << std::endl;
159  for (size_type i=0; i!=n; ++i) {
160  const TriggerObject& TO(TOC[KEYS[i]]);
161  coll->push_back(reco::LeafCandidate( 0, TO.particle().p4(), reco::Particle::Point( 0., 0., 0. ), TO.id() ));
162 // std::cout << " " << i << " " << VIDS[i] << "/" << KEYS[i] << ": "
163 // << TO.id() << " " << TO.pt() << " " << TO.eta() << " " << TO.phi() << " " << TO.mass()
164 // << std::endl;
165  }
166  }
167  }
168  }
169 
170 
171  iEvent.put(std::move(coll));
172  return;
173 }
174 
176 
178 
179 
unsigned int size() const
number of trigger paths in trigger table
bool wasrun() const
Was at least one path run?
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
Definition: Event.h:137
const std::string moduleType(const std::string &module) const
C++ class name of module.
int id() const
getters
Definition: TriggerObject.h:55
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:579
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:17
bool accept() const
Has at least one path accepted the event?
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
reco::Particle particle(reco::Particle::Charge q=0, const reco::Particle::Point &vertex=reco::Particle::Point(0, 0, 0), int status=0, bool integerCharge=true) const
Definition: TriggerObject.h:69
edm::Handle< edm::TriggerResults > triggerResultsHandle_
additional class data memebers
CandidateTriggerObjectProducer(const edm::ParameterSet &)
edm::EDGetTokenT< edm::TriggerResults > triggerResultsToken_
const LorentzVector & p4() const
four-momentum Lorentz vector
Definition: Particle.h:72
uint16_t size_type
edm::Handle< trigger::TriggerEvent > triggerEventHandle_
const std::vector< std::string > & saveTagsModules(unsigned int trigger) const
unsigned int triggerIndex(const std::string &triggerName) const
slot position of trigger path in trigger table (0 to size-1)
const Vids & filterIds(trigger::size_type index) const
Definition: TriggerEvent.h:110
int iEvent
Definition: GenABIO.cc:230
unsigned int triggerIndex(std::string const &name) const
Definition: TriggerNames.cc:32
void produce(edm::Event &, const edm::EventSetup &) override
edm::EDGetTokenT< trigger::TriggerEvent > triggerEventToken_
const TriggerObjectCollection & getObjects() const
Definition: TriggerEvent.h:98
unsigned int size() const
Get number of paths stored.
bool error() const
Has any path encountered an error (exception)
math::XYZPoint Point
point in the space
Definition: Particle.h:25
bool isValid() const
Definition: HandleBase.h:74
void beginRun(const edm::Run &iRun, edm::EventSetup const &iSetup) override
std::vector< TriggerObject > TriggerObjectCollection
collection of trigger physics objects (e.g., all isolated muons)
Definition: TriggerObject.h:81
JetCorrectorParametersCollection coll
Definition: classes.h:10
std::vector< size_type > Keys
std::pair< int, int > prescaleValues(const edm::Event &iEvent, const edm::EventSetup &iSetup, const std::string &trigger)
Combined L1T (pair.first) and HLT (pair.second) prescales per HLT path.
HLTConfigProvider const & hltConfigProvider() const
std::string const & process() const
Definition: InputTag.h:40
fixed size matrix
HLT enums.
edm::TriggerNames const & triggerNames(edm::TriggerResults const &triggerResults) const override
Definition: Event.cc:301
bool init(const edm::Run &iRun, const edm::EventSetup &iSetup, const std::string &processName, bool &changed)
std::vector< int > Vids
def move(src, dest)
Definition: eostools.py:510
Definition: Run.h:44