CMS 3D CMS Logo

HLTL1MuonNoL2Selector.cc
Go to the documentation of this file.
1 //-------------------------------------------------
2 //
14 //
15 //--------------------------------------------------
16 
17 // Class Header
19 
20 // Framework
26 
27 using namespace std;
28 using namespace edm;
29 using namespace l1t;
30 
31 // constructors
33  theL1Source_(iConfig.getParameter<InputTag>("InputObjects")),
34  theL1MinPt_(iConfig.getParameter<double>("L1MinPt")),
35  theL1MaxEta_(iConfig.getParameter<double>("L1MaxEta")),
36  theL1MinQuality_(iConfig.getParameter<unsigned int>("L1MinQuality")),
37  theL2CandTag_ (iConfig.getParameter< edm::InputTag > ("L2CandTag")),
38  theL2CandToken_ (consumes<reco::RecoChargedCandidateCollection>(theL2CandTag_)),
39  theL1CandTag_ (iConfig.getParameter<InputTag > ("L1CandTag")),
40  theL1CandToken_ (consumes<trigger::TriggerFilterObjectWithRefs>(theL1CandTag_)),
41  seedMapTag_( iConfig.getParameter<InputTag >("SeedMapTag") ),
42  seedMapToken_(consumes<SeedMap>(seedMapTag_))
43 {
44  muCollToken_ = consumes<MuonBxCollection>(theL1Source_);
45 
46  produces<MuonBxCollection>();
47 }
48 
49 // destructor
51 
52 void
55  desc.add<edm::InputTag>("InputObjects",edm::InputTag(""));
56  desc.add<edm::InputTag>("L2CandTag",edm::InputTag("hltL2MuonCandidates"));
57  desc.add<edm::InputTag>("L1CandTag",edm::InputTag(""));
58  desc.add<edm::InputTag>("SeedMapTag",edm::InputTag("hltL2Muons"));
59  desc.add<double>("L1MinPt",-1.);
60  desc.add<double>("L1MaxEta",5.0);
61  desc.add<unsigned int>("L1MinQuality",0);
62  descriptions.add("hltL1MuonNoL2Selector",desc);
63 }
64 
66 {
67  using namespace std;
68  using namespace reco;
69  using namespace trigger;
70 
71  const std::string metname = "Muon|RecoMuon|HLTL1MuonNoL2Selector";
72 
73  unique_ptr<MuonBxCollection> output(new MuonBxCollection());
74 
75  // Get hold of L2 trks
77  iEvent.getByToken(theL2CandToken_,L2cands);
78 
79  // get the L2 to L1 map object for this event
80  // HLTMuonL2ToL1TMap mapL2ToL1(theL1CandToken_, seedMapToken_, iEvent);
81 
82  // Muon particles
84  iEvent.getByToken(muCollToken_, muColl);
85  LogTrace(metname) << "Number of muons " << muColl->size() << endl;
86 
87  edm::Handle<SeedMap> seedMapHandle;
88  iEvent.getByToken(seedMapToken_, seedMapHandle);
89 
90  std::vector<l1t::MuonRef> firedL1Muons_;
92  iEvent.getByToken(theL1CandToken_, L1Cands);
93  L1Cands->getObjects(trigger::TriggerL1Mu, firedL1Muons_);
94 
95  for (int ibx = muColl->getFirstBX(); ibx <= muColl->getLastBX(); ++ibx) {
96  if (ibx != 0) continue;
97  for (auto it = muColl->begin(ibx); it != muColl->end(ibx); it++){
98  l1t::MuonRef l1muon(muColl, distance(muColl->begin(muColl->getFirstBX()),it) );
99 
100  // only select L1's that fired:
101  if(find(firedL1Muons_.begin(), firedL1Muons_.end(), l1muon) == firedL1Muons_.end()) continue;
102 
103  // Loop over L2's to find whether the L1 fired this L2.
104  bool isTriggeredByL1=false;
105  for (auto const & cand : *L2cands) {
106  TrackRef l2muon = cand.get<TrackRef>();
107  const edm::RefVector<L2MuonTrajectorySeedCollection>& seeds = (*seedMapHandle)[l2muon->seedRef().castTo<edm::Ref<L2MuonTrajectorySeedCollection> >()];
108  for(auto const & seed : seeds){
109  // Check if the L2 was seeded by a triggered L1, in such case skip the loop.
110  if(find(firedL1Muons_.begin(), firedL1Muons_.end(), seed->l1tParticle()) != firedL1Muons_.end()){
111  isTriggeredByL1 = true;
112  break;
113  }
114  }
115  if (!isTriggeredByL1) {
116  output->push_back( ibx, *it);
117  }
118  }
119  }
120  } // loop over L1
121 
122  iEvent.put(std::move(output));
123 }
124 
const_iterator end(int bx) const
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
Definition: Event.h:122
void getObjects(Vids &ids, VRphoton &refs) const
various physics-level getters:
unsigned size(int bx) const
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:457
enum start value shifted to 81 so as to avoid clashes with PDG codes
const std::string metname
HLTL1MuonNoL2Selector(const edm::ParameterSet &)
Constructor.
virtual void produce(edm::StreamID, edm::Event &, const edm::EventSetup &) const override
delete x;
Definition: CaloConfig.h:22
void find(edm::Handle< EcalRecHitCollection > &hits, DetId thisDet, std::vector< EcalRecHitCollection::const_iterator > &hit, bool debug=false)
Definition: FindCaloHit.cc:20
static void fillDescriptions(edm::ConfigurationDescriptions &descriptions)
edm::EDGetTokenT< l1t::MuonBxCollection > muCollToken_
int iEvent
Definition: GenABIO.cc:230
edm::EDGetTokenT< reco::RecoChargedCandidateCollection > theL2CandToken_
ParameterDescriptionBase * add(U const &iLabel, T const &value)
#define LogTrace(id)
BXVector< Muon > MuonBxCollection
Definition: Muon.h:10
std::vector< RecoChargedCandidate > RecoChargedCandidateCollection
collectin of RecoChargedCandidate objects
int getFirstBX() const
edm::EDGetTokenT< SeedMap > seedMapToken_
void add(std::string const &label, ParameterSetDescription const &psetDescription)
fixed size matrix
HLT enums.
~HLTL1MuonNoL2Selector()
Destructor.
int getLastBX() const
edm::EDGetTokenT< trigger::TriggerFilterObjectWithRefs > theL1CandToken_
void push_back(value_type const &ref)
Add a Ref<C, T> to the RefVector.
Definition: RefVector.h:69
const_iterator begin(int bx) const
def move(src, dest)
Definition: eostools.py:510