CMS 3D CMS Logo

List of all members | Public Member Functions | Static Public Member Functions | Private Member Functions | Private Attributes
HLTDisplacedtktkVtxProducer Class Reference

#include <HLTDisplacedtktkVtxProducer.h>

Inheritance diagram for HLTDisplacedtktkVtxProducer:
edm::stream::EDProducer<>

Public Member Functions

virtual void beginJob ()
 
virtual void endJob ()
 
 HLTDisplacedtktkVtxProducer (const edm::ParameterSet &)
 
void produce (edm::Event &, const edm::EventSetup &) override
 
 ~HLTDisplacedtktkVtxProducer () override
 
- Public Member Functions inherited from edm::stream::EDProducer<>
 EDProducer ()=default
 
bool hasAbilityToProduceInLumis () const final
 
bool hasAbilityToProduceInRuns () const final
 

Static Public Member Functions

static void fillDescriptions (edm::ConfigurationDescriptions &descriptions)
 

Private Member Functions

bool checkPreviousCand (const reco::TrackRef &trackref, std::vector< reco::RecoChargedCandidateRef > &ref2)
 

Private Attributes

const int chargeOpt_
 
const double massParticle1_
 
const double massParticle2_
 
const double maxEta_
 
const double maxInvMass_
 
const double minInvMass_
 
const double minPt_
 
const double minPtPair_
 
const edm::InputTag previousCandTag_
 
const edm::EDGetTokenT< trigger::TriggerFilterObjectWithRefspreviousCandToken_
 
const edm::InputTag srcTag_
 
const edm::EDGetTokenT< reco::RecoChargedCandidateCollectionsrcToken_
 
const int triggerTypeDaughters_
 

Additional Inherited Members

- Public Types inherited from edm::stream::EDProducer<>
typedef CacheContexts< T... > CacheTypes
 
typedef CacheTypes::GlobalCache GlobalCache
 
typedef AbilityChecker< T... > HasAbility
 
typedef CacheTypes::LuminosityBlockCache LuminosityBlockCache
 
typedef LuminosityBlockContextT< LuminosityBlockCache, RunCache, GlobalCacheLuminosityBlockContext
 
typedef CacheTypes::LuminosityBlockSummaryCache LuminosityBlockSummaryCache
 
typedef CacheTypes::RunCache RunCache
 
typedef RunContextT< RunCache, GlobalCacheRunContext
 
typedef CacheTypes::RunSummaryCache RunSummaryCache
 

Detailed Description

Definition at line 35 of file HLTDisplacedtktkVtxProducer.h.

Constructor & Destructor Documentation

HLTDisplacedtktkVtxProducer::HLTDisplacedtktkVtxProducer ( const edm::ParameterSet iConfig)
explicit

Definition at line 35 of file HLTDisplacedtktkVtxProducer.cc.

References ~HLTDisplacedtktkVtxProducer().

35  :
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 }
T getParameter(std::string const &) const
const edm::EDGetTokenT< trigger::TriggerFilterObjectWithRefs > previousCandToken_
const edm::EDGetTokenT< reco::RecoChargedCandidateCollection > srcToken_
HLTDisplacedtktkVtxProducer::~HLTDisplacedtktkVtxProducer ( )
overridedefault

Member Function Documentation

void HLTDisplacedtktkVtxProducer::beginJob ( void  )
virtual

Definition at line 76 of file HLTDisplacedtktkVtxProducer.cc.

77 {
78 
79 }
bool HLTDisplacedtktkVtxProducer::checkPreviousCand ( const reco::TrackRef trackref,
std::vector< reco::RecoChargedCandidateRef > &  ref2 
)
private

Definition at line 203 of file HLTDisplacedtktkVtxProducer.cc.

References mps_fire::i, and convertSQLiteXML::ok.

Referenced by produce().

203  {
204  bool ok=false;
205  for (auto & i : refVect) {
206  if ( i->get<TrackRef>() == trackref ) {
207  ok=true;
208  break;
209  }
210  }
211  return ok;
212 }
void HLTDisplacedtktkVtxProducer::endJob ( void  )
virtual

Definition at line 82 of file HLTDisplacedtktkVtxProducer.cc.

83 {
84 
85 }
void HLTDisplacedtktkVtxProducer::fillDescriptions ( edm::ConfigurationDescriptions descriptions)
static

Definition at line 58 of file HLTDisplacedtktkVtxProducer.cc.

References edm::ConfigurationDescriptions::add(), and edm::ParameterSetDescription::add().

58  {
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 }
ParameterDescriptionBase * add(U const &iLabel, T const &value)
void add(std::string const &label, ParameterSetDescription const &psetDescription)
void HLTDisplacedtktkVtxProducer::produce ( edm::Event iEvent,
const edm::EventSetup iSetup 
)
override

Definition at line 88 of file HLTDisplacedtktkVtxProducer.cc.

References funct::abs(), chargeOpt_, checkPreviousCand(), edm::EventSetup::get(), edm::Ref< C, T, F >::get(), edm::Event::getByToken(), trigger::TriggerRefsCollections::getObjects(), TransientVertex::isValid(), LogDebug, massParticle1_, massParticle2_, maxEta_, maxInvMass_, minInvMass_, minPt_, minPtPair_, eostools::move(), AlCaHLTBitMon_ParallelJobs::p, p1, p2, previousCandToken_, edm::Event::put(), mathSSE::sqrt(), srcToken_, triggerTypeDaughters_, KalmanVertexFitter::vertex(), and particleFlowSuperClusterECAL_cfi::vertexCollection.

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  std::vector<bool> candComp;
120  for (cand1=trackcands->begin(); cand1!=trackcands->end(); cand1++)
121  candComp.push_back(checkPreviousCand( cand1->get<TrackRef>(), vPrevCands));
122 
123  for (cand1=trackcands->begin(); cand1!=trackcands->end(); cand1++) {
124  TrackRef tk1 = cand1->get<TrackRef>();
125  LogDebug("HLTDisplacedtktkVtxProducer") << " 1st track in loop: q*pt= " << cand1->charge()*cand1->pt() << ", eta= " << cand1->eta() << ", hits= " << tk1->numberOfValidHits();
126 
127  //first check if this track passed the previous filter
128  if (!candComp[cand1-trackcands->begin()]) continue;
129  // if( ! checkPreviousCand( tk1, vPrevCands) ) continue;
130 
131  // cuts
132  if (abs(cand1->eta())>maxEta_) continue;
133  if (cand1->pt() < minPt_) continue;
134 
135 
136  cand2=trackcands->begin();
137  if(massParticle1_==massParticle2_){cand2 = cand1+1;}
138 
139  for (; cand2!=trackcands->end(); cand2++) {
140 
141  TrackRef tk2 = cand2->get<TrackRef>();
142  if(tk1==tk2) continue;
143 
144  // eta cut
145  LogDebug("HLTDisplacedtktkVtxProducer") << " 2nd track in loop: q*pt= " << cand2->charge()*cand2->pt() << ", eta= " << cand2->eta() << ", hits= " << tk2->numberOfValidHits() << ", d0= " << tk2->d0();
146  //first check if this track passed the previous filter
147  if (!candComp[cand2-trackcands->begin()]) continue;
148  // if( ! checkPreviousCand( tk2, vPrevCands) ) continue;
149 
150  // cuts
151  if (abs(cand2->eta())>maxEta_) continue;
152  if (cand2->pt() < minPt_) continue;
153 
154  // opposite sign or same sign
155  if (chargeOpt_<0) {
156  if (cand1->charge()*cand2->charge()>0) continue;
157  } else if (chargeOpt_>0) {
158  if (cand1->charge()*cand2->charge()<0) continue;
159  }
160 
161  // Combined ditrack system
162  e1 = sqrt(cand1->momentum().Mag2()+firstTrackMass2);
163  e2 = sqrt(cand2->momentum().Mag2()+secondTrackMass2);
164  p1 = Particle::LorentzVector(cand1->px(),cand1->py(),cand1->pz(),e1);
165  p2 = Particle::LorentzVector(cand2->px(),cand2->py(),cand2->pz(),e2);
166  p = p1+p2;
167 
168 
169  if (p.pt()<minPtPair_) continue;
170 
171  double invmass = abs(p.mass());
172  LogDebug("HLTDisplacedtktkVtxProducer") << " ... 1-2 invmass= " << invmass;
173 
174  if (invmass<minInvMass_) continue;
175  if (invmass>maxInvMass_) continue;
176 
177  // do the vertex fit
178  vector<TransientTrack> t_tks;
179  TransientTrack ttkp1 = (*theB).build(&tk1);
180  TransientTrack ttkp2 = (*theB).build(&tk2);
181  t_tks.push_back(ttkp1);
182  t_tks.push_back(ttkp2);
183 
184 
185  if (t_tks.size()!=2) continue;
186 
187  KalmanVertexFitter kvf;
188  TransientVertex tv = kvf.vertex(t_tks);
189 
190  if (!tv.isValid()) continue;
191 
192  Vertex vertex = tv;
193 
194  // put vertex in the event
195  vertexCollection->push_back(vertex);
196  }
197  }
198  iEvent.put(std::move(vertexCollection));
199 }
#define LogDebug(id)
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
Definition: Event.h:125
void getObjects(Vids &ids, VRphoton &refs) const
various physics-level getters:
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:517
std::vector< Vertex > VertexCollection
collection of Vertex objects
Definition: VertexFwd.h:9
bool checkPreviousCand(const reco::TrackRef &trackref, std::vector< reco::RecoChargedCandidateRef > &ref2)
T sqrt(T t)
Definition: SSEVec.h:18
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
CachingVertex< 5 > vertex(const std::vector< reco::TransientTrack > &tracks) const override
T const * get() const
Returns C++ pointer to the item.
Definition: Ref.h:243
double p2[4]
Definition: TauolaWrapper.h:90
double p1[4]
Definition: TauolaWrapper.h:89
const edm::EDGetTokenT< trigger::TriggerFilterObjectWithRefs > previousCandToken_
T get() const
Definition: EventSetup.h:71
const edm::EDGetTokenT< reco::RecoChargedCandidateCollection > srcToken_
bool isValid() const
def move(src, dest)
Definition: eostools.py:511
math::PtEtaPhiELorentzVectorF LorentzVector

Member Data Documentation

const int HLTDisplacedtktkVtxProducer::chargeOpt_
private

Definition at line 58 of file HLTDisplacedtktkVtxProducer.h.

Referenced by produce().

const double HLTDisplacedtktkVtxProducer::massParticle1_
private

Definition at line 56 of file HLTDisplacedtktkVtxProducer.h.

Referenced by produce().

const double HLTDisplacedtktkVtxProducer::massParticle2_
private

Definition at line 57 of file HLTDisplacedtktkVtxProducer.h.

Referenced by produce().

const double HLTDisplacedtktkVtxProducer::maxEta_
private

Definition at line 51 of file HLTDisplacedtktkVtxProducer.h.

Referenced by produce().

const double HLTDisplacedtktkVtxProducer::maxInvMass_
private

Definition at line 55 of file HLTDisplacedtktkVtxProducer.h.

Referenced by produce().

const double HLTDisplacedtktkVtxProducer::minInvMass_
private

Definition at line 54 of file HLTDisplacedtktkVtxProducer.h.

Referenced by produce().

const double HLTDisplacedtktkVtxProducer::minPt_
private

Definition at line 52 of file HLTDisplacedtktkVtxProducer.h.

Referenced by produce().

const double HLTDisplacedtktkVtxProducer::minPtPair_
private

Definition at line 53 of file HLTDisplacedtktkVtxProducer.h.

Referenced by produce().

const edm::InputTag HLTDisplacedtktkVtxProducer::previousCandTag_
private

Definition at line 49 of file HLTDisplacedtktkVtxProducer.h.

const edm::EDGetTokenT<trigger::TriggerFilterObjectWithRefs> HLTDisplacedtktkVtxProducer::previousCandToken_
private

Definition at line 50 of file HLTDisplacedtktkVtxProducer.h.

Referenced by produce().

const edm::InputTag HLTDisplacedtktkVtxProducer::srcTag_
private

Definition at line 47 of file HLTDisplacedtktkVtxProducer.h.

const edm::EDGetTokenT<reco::RecoChargedCandidateCollection> HLTDisplacedtktkVtxProducer::srcToken_
private

Definition at line 48 of file HLTDisplacedtktkVtxProducer.h.

Referenced by produce().

const int HLTDisplacedtktkVtxProducer::triggerTypeDaughters_
private

Definition at line 59 of file HLTDisplacedtktkVtxProducer.h.

Referenced by produce().