CMS 3D CMS Logo

HLTDisplacedtktkVtxProducer.cc
Go to the documentation of this file.
1 #include <iostream>
2 
6 
14 
19 
25 
27 
28 using namespace edm;
29 using namespace reco;
30 using namespace std;
31 using namespace trigger;
32 //
33 // constructors and destructor
34 //
36  srcTag_ (iConfig.getParameter<edm::InputTag>("Src")),
37  srcToken_(consumes<reco::RecoChargedCandidateCollection>(srcTag_)),
38  previousCandTag_(iConfig.getParameter<edm::InputTag>("PreviousCandTag")),
39  previousCandToken_(consumes<trigger::TriggerFilterObjectWithRefs>(previousCandTag_)),
40  maxEta_ (iConfig.getParameter<double>("MaxEta")),
41  minPt_ (iConfig.getParameter<double>("MinPt")),
42  minPtPair_ (iConfig.getParameter<double>("MinPtPair")),
43  minInvMass_ (iConfig.getParameter<double>("MinInvMass")),
44  maxInvMass_ (iConfig.getParameter<double>("MaxInvMass")),
45  massParticle1_ (iConfig.getParameter<double>("massParticle1")),
46  massParticle2_ (iConfig.getParameter<double>("massParticle2")),
47  chargeOpt_ (iConfig.getParameter<int>("ChargeOpt")),
48  triggerTypeDaughters_(iConfig.getParameter<int>("triggerTypeDaughters"))
49 
50 {
51  produces<VertexCollection>();
52 }
53 
54 
56 
57 void
60  desc.add<edm::InputTag>("Src",edm::InputTag("hltL3MuonCandidates"));
61  desc.add<edm::InputTag>("PreviousCandTag",edm::InputTag(""));
62  desc.add<double>("MaxEta",2.5);
63  desc.add<double>("MinPt",0.0);
64  desc.add<double>("MinPtPair",0.0);
65  desc.add<double>("MinInvMass",1.0);
66  desc.add<double>("MaxInvMass",20.0);
67  desc.add<double>("massParticle1",0.1396);
68  desc.add<double>("massParticle2",0.4937);
69  desc.add<int>("ChargeOpt",-1);
70  desc.add<int>("triggerTypeDaughters",0);
71 
72  descriptions.add("hltDisplacedtktkVtxProducer", desc);
73 }
74 
75 // ------------ method called once each job just before starting event loop ------------
77 {
78 
79 }
80 
81 // ------------ method called once each job just after ending the event loop ------------
83 {
84 
85 }
86 
87 // ------------ method called on each new Event ------------
89 {
90  double const firstTrackMass = massParticle1_;
91  double const firstTrackMass2 = firstTrackMass*firstTrackMass;
92  double const secondTrackMass = massParticle2_;
93  double const secondTrackMass2 = secondTrackMass*secondTrackMass;
94 
95  // get hold of track trks
97  iEvent.getByToken(srcToken_,trackcands);
98 
99  //get the transient track builder:
101  iSetup.get<TransientTrackRecord>().get("TransientTrackBuilder",theB);
102 
103  std::unique_ptr<VertexCollection> vertexCollection(new VertexCollection());
104 
105  // look at all trackcands, check cuts and make vertices
106  double e1,e2;
108 
109  RecoChargedCandidateCollection::const_iterator cand1;
110  RecoChargedCandidateCollection::const_iterator cand2;
111 
112  // get the objects passing the previous filter
114  iEvent.getByToken(previousCandToken_,previousCands);
115 
116  vector<RecoChargedCandidateRef> vPrevCands;
117  previousCands->getObjects(triggerTypeDaughters_,vPrevCands);
118 
119  for (cand1=trackcands->begin(); cand1!=trackcands->end(); cand1++) {
120  TrackRef tk1 = cand1->get<TrackRef>();
121  LogDebug("HLTDisplacedtktkVtxProducer") << " 1st track in loop: q*pt= " << cand1->charge()*cand1->pt() << ", eta= " << cand1->eta() << ", hits= " << tk1->numberOfValidHits();
122 
123  //first check if this track passed the previous filter
124  if( ! checkPreviousCand( tk1, vPrevCands) ) continue;
125 
126  // cuts
127  if (abs(cand1->eta())>maxEta_) continue;
128  if (cand1->pt() < minPt_) continue;
129 
130 
131  cand2=trackcands->begin();
132  if(massParticle1_==massParticle2_){cand2 = cand1+1;}
133 
134  for (; cand2!=trackcands->end(); cand2++) {
135 
136  TrackRef tk2 = cand2->get<TrackRef>();
137  if(tk1==tk2) continue;
138 
139  // eta cut
140  LogDebug("HLTDisplacedtktkVtxProducer") << " 2nd track in loop: q*pt= " << cand2->charge()*cand2->pt() << ", eta= " << cand2->eta() << ", hits= " << tk2->numberOfValidHits() << ", d0= " << tk2->d0();
141  //first check if this track passed the previous filter
142  if( ! checkPreviousCand( tk2, vPrevCands) ) continue;
143 
144  // cuts
145  if (abs(cand2->eta())>maxEta_) continue;
146  if (cand2->pt() < minPt_) continue;
147 
148  // opposite sign or same sign
149  if (chargeOpt_<0) {
150  if (cand1->charge()*cand2->charge()>0) continue;
151  } else if (chargeOpt_>0) {
152  if (cand1->charge()*cand2->charge()<0) continue;
153  }
154 
155  // Combined ditrack system
156  e1 = sqrt(cand1->momentum().Mag2()+firstTrackMass2);
157  e2 = sqrt(cand2->momentum().Mag2()+secondTrackMass2);
158  p1 = Particle::LorentzVector(cand1->px(),cand1->py(),cand1->pz(),e1);
159  p2 = Particle::LorentzVector(cand2->px(),cand2->py(),cand2->pz(),e2);
160  p = p1+p2;
161 
162 
163  if (p.pt()<minPtPair_) continue;
164 
165  double invmass = abs(p.mass());
166  LogDebug("HLTDisplacedtktkVtxProducer") << " ... 1-2 invmass= " << invmass;
167 
168  if (invmass<minInvMass_) continue;
169  if (invmass>maxInvMass_) continue;
170 
171  // do the vertex fit
172  vector<TransientTrack> t_tks;
173  TransientTrack ttkp1 = (*theB).build(&tk1);
174  TransientTrack ttkp2 = (*theB).build(&tk2);
175  t_tks.push_back(ttkp1);
176  t_tks.push_back(ttkp2);
177 
178 
179  if (t_tks.size()!=2) continue;
180 
181  KalmanVertexFitter kvf;
182  TransientVertex tv = kvf.vertex(t_tks);
183 
184  if (!tv.isValid()) continue;
185 
186  Vertex vertex = tv;
187 
188  // put vertex in the event
189  vertexCollection->push_back(vertex);
190  }
191  }
192  iEvent.put(std::move(vertexCollection));
193 }
194 
195 
196 
197 bool HLTDisplacedtktkVtxProducer::checkPreviousCand(const TrackRef& trackref, vector<RecoChargedCandidateRef> & refVect){
198  bool ok=false;
199  for (auto & i : refVect) {
200  if ( i->get<TrackRef>() == trackref ) {
201  ok=true;
202  break;
203  }
204  }
205  return ok;
206 }
#define LogDebug(id)
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:
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:460
virtual CachingVertex< 5 > vertex(const std::vector< reco::TransientTrack > &tracks) const
virtual void produce(edm::Event &, const edm::EventSetup &)
std::vector< Vertex > VertexCollection
collection of Vertex objects
Definition: VertexFwd.h:9
bool checkPreviousCand(const reco::TrackRef &trackref, std::vector< reco::RecoChargedCandidateRef > &ref2)
int iEvent
Definition: GenABIO.cc:230
T sqrt(T t)
Definition: SSEVec.h:18
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
T const * get() const
Returns C++ pointer to the item.
Definition: Ref.h:244
ParameterDescriptionBase * add(U const &iLabel, T const &value)
double p2[4]
Definition: TauolaWrapper.h:90
std::vector< RecoChargedCandidate > RecoChargedCandidateCollection
collectin of RecoChargedCandidate objects
Float e1
Definition: deltaR.h:20
const T & get() const
Definition: EventSetup.h:56
void add(std::string const &label, ParameterSetDescription const &psetDescription)
HLTDisplacedtktkVtxProducer(const edm::ParameterSet &)
Float e2
Definition: deltaR.h:21
static void fillDescriptions(edm::ConfigurationDescriptions &descriptions)
fixed size matrix
HLT enums.
double p1[4]
Definition: TauolaWrapper.h:89
const edm::EDGetTokenT< trigger::TriggerFilterObjectWithRefs > previousCandToken_
const edm::EDGetTokenT< reco::RecoChargedCandidateCollection > srcToken_
bool isValid() const
def move(src, dest)
Definition: eostools.py:510
math::PtEtaPhiELorentzVectorF LorentzVector