CMS 3D CMS Logo

List of all members | Classes | Public Member Functions | Private Member Functions | Private Attributes
BPHDecayToTkpTknSymChargeBuilder Class Reference

#include <BPHDecayToTkpTknSymChargeBuilder.h>

Inheritance diagram for BPHDecayToTkpTknSymChargeBuilder:
BPHDecayGenericBuilder BPHKx0ToKPiBuilder

Classes

class  Particle
 

Public Member Functions

 BPHDecayToTkpTknSymChargeBuilder (const BPHDecayToTkpTknSymChargeBuilder &x)=delete
 
 BPHDecayToTkpTknSymChargeBuilder (const edm::EventSetup &es, const std::string &daug1Name, double daug1Mass, double daug1Sigma, const std::string &daug2Name, double daug2Mass, double daug2Sigma, const BPHRecoBuilder::BPHGenericCollection *posCollection, const BPHRecoBuilder::BPHGenericCollection *negCollection, double expectedMass)
 
std::vector< BPHPlusMinusConstCandPtrbuild ()
 build candidates More...
 
double getDzMax () const
 
double getTrk1EtaMax () const
 
double getTrk1PtMin () const
 get current cuts More...
 
double getTrk2EtaMax () const
 
double getTrk2PtMin () const
 
BPHDecayToTkpTknSymChargeBuilderoperator= (const BPHDecayToTkpTknSymChargeBuilder &x)=delete
 
void setDzMax (double dz)
 
void setTrk1EtaMax (double eta)
 
void setTrk1PtMin (double pt)
 set cuts More...
 
void setTrk2EtaMax (double eta)
 
void setTrk2PtMin (double pt)
 
 ~BPHDecayToTkpTknSymChargeBuilder () override
 
- Public Member Functions inherited from BPHDecayGenericBuilder
 BPHDecayGenericBuilder (const BPHDecayGenericBuilder &x)=delete
 
 BPHDecayGenericBuilder (const edm::EventSetup &es, BPHMassFitSelect *mfs=nullptr)
 
double getMassFitMax () const
 
double getMassFitMin () const
 
double getMassMax () const
 
double getMassMin () const
 get current cuts More...
 
double getMinPDiff ()
 
double getProbMin () const
 
BPHDecayGenericBuilderoperator= (const BPHDecayGenericBuilder &x)=delete
 
void setMassFitMax (double m)
 
void setMassFitMin (double m)
 
void setMassFitRange (double mMin, double mMax)
 
void setMassMax (double m)
 
void setMassMin (double m)
 set cuts More...
 
void setMassRange (double mMin, double mMax)
 
void setMinPDiff (double mpd)
 track min p difference More...
 
void setProbMin (double p)
 
virtual ~BPHDecayGenericBuilder ()
 

Private Member Functions

void addParticle (const BPHRecoBuilder::BPHGenericCollection *collection, int charge, std::vector< Particle * > &list)
 

Private Attributes

double d1Mass
 
std::string d1Name
 
double d1Sigma
 
double d2Mass
 
std::string d2Name
 
double d2Sigma
 
double dzMax
 
double eMass
 
double eta1Max
 
double eta2Max
 
const BPHRecoBuilder::BPHGenericCollectionnCollection
 
const BPHRecoBuilder::BPHGenericCollectionpCollection
 
double pt1Min
 
double pt2Min
 
std::vector< BPHPlusMinusConstCandPtrrecList
 

Additional Inherited Members

- Protected Attributes inherited from BPHDecayGenericBuilder
BPHChi2Selectchi2Sel
 
const edm::EventSetupevSetup
 
BPHMassSelectmassSel
 
BPHMassFitSelectmFitSel
 
double minPDiff
 
bool updated
 

Detailed Description

Description: Class to build a decay to an oppositely charged particle pair with different masses, choosing the best mass assignment on the reconstructed mass basis

Author
Paolo Ronchese INFN Padova

Definition at line 43 of file BPHDecayToTkpTknSymChargeBuilder.h.

Constructor & Destructor Documentation

◆ BPHDecayToTkpTknSymChargeBuilder() [1/2]

BPHDecayToTkpTknSymChargeBuilder::BPHDecayToTkpTknSymChargeBuilder ( const edm::EventSetup es,
const std::string &  daug1Name,
double  daug1Mass,
double  daug1Sigma,
const std::string &  daug2Name,
double  daug2Mass,
double  daug2Sigma,
const BPHRecoBuilder::BPHGenericCollection posCollection,
const BPHRecoBuilder::BPHGenericCollection negCollection,
double  expectedMass 
)

Constructor

Definition at line 40 of file BPHDecayToTkpTknSymChargeBuilder.cc.

52  d1Name(daug1Name),
53  d1Mass(daug1Mass),
54  d1Sigma(daug1Sigma),
55  d2Name(daug2Name),
56  d2Mass(daug2Mass),
57  d2Sigma(daug2Sigma),
58  eMass(expectedMass),
59  pCollection(posCollection),
60  nCollection(negCollection),
61  pt1Min(-1.0),
62  pt2Min(-1.0),
63  eta1Max(10.0),
64  eta2Max(10.0),
65  dzMax(1.0) {}

◆ BPHDecayToTkpTknSymChargeBuilder() [2/2]

BPHDecayToTkpTknSymChargeBuilder::BPHDecayToTkpTknSymChargeBuilder ( const BPHDecayToTkpTknSymChargeBuilder x)
delete

◆ ~BPHDecayToTkpTknSymChargeBuilder()

BPHDecayToTkpTknSymChargeBuilder::~BPHDecayToTkpTknSymChargeBuilder ( )
override

Destructor

Definition at line 70 of file BPHDecayToTkpTknSymChargeBuilder.cc.

70 {}

Member Function Documentation

◆ addParticle()

void BPHDecayToTkpTknSymChargeBuilder::addParticle ( const BPHRecoBuilder::BPHGenericCollection collection,
int  charge,
std::vector< Particle * > &  list 
)
private

Definition at line 206 of file BPHDecayToTkpTknSymChargeBuilder.cc.

208  {
209  int i;
210  int n = collection->size();
211  list.reserve(n);
212  for (i = 0; i < n; ++i) {
213  const reco::Candidate& cand = collection->get(i);
214  int q = cand.charge();
215  if ((charge > 0) && (q <= 0))
216  continue;
217  if ((charge < 0) && (q >= 0))
218  continue;
220  const reco::Track* tk = BPHTrackReference::getTrack(cand, "cfhp");
221  if (tk == nullptr)
222  continue;
223  double px = p4.px();
224  double py = p4.py();
225  double pz = p4.pz();
226  double p2 = (px * px) + (py * py) + (pz * pz);
227  double e1 = ((p4.pt() >= pt1Min) && (p4.eta() <= eta1Max) ? sqrt(p2 + (d1Mass * d1Mass)) : -1.0);
228  double e2 = ((p4.pt() >= pt2Min) && (p4.eta() <= eta2Max) ? sqrt(p2 + (d2Mass * d2Mass)) : -1.0);
229  if ((e1 > 0.0) || (e2 > 0.0))
230  list.push_back(new Particle(&cand, tk, px, py, pz, e1, e2));
231  }
232  return;
233 }

References ALCARECOTkAlJpsiMuMu_cff::charge, universalConfigTemplate::collection, d1Mass, d2Mass, StorageManager_cfg::e1, eta1Max, eta2Max, BPHTrackReference::getTrack(), mps_fire::i, list(), dqmiodumpmetadata::n, p2, p4, pt1Min, pt2Min, multPhiCorr_741_25nsDY_cfi::px, multPhiCorr_741_25nsDY_cfi::py, data-class-funcs::q, and mathSSE::sqrt().

Referenced by build().

◆ build()

vector< BPHPlusMinusConstCandPtr > BPHDecayToTkpTknSymChargeBuilder::build ( )

build candidates

Operations

Definition at line 75 of file BPHDecayToTkpTknSymChargeBuilder.cc.

75  {
76  if (updated)
77  return recList;
78 
79  recList.clear();
80 
81  // extract basic informations from input collections
82 
83  vector<Particle*> pList;
84  vector<Particle*> nList;
85 
86  addParticle(pCollection, +1, pList);
87  addParticle(nCollection, -1, nList);
88  int iPos;
89  int iNeg;
90  int nPos = pList.size();
91  int nNeg = nList.size();
92  double massMin = getMassMin();
93  double massMax = getMassMax();
94  double mSqMin = massMin * massMin * 0.9;
95  double mSqMax = massMax * massMax * 1.1;
96  if (mSqMin < 0.0)
97  mSqMin = 0.0;
98 
99  for (iPos = 0; iPos < nPos; ++iPos) {
100  Particle* pc = pList[iPos];
101  const reco::Track* pt = pc->track;
102  double px = pc->px;
103  double py = pc->py;
104  double pz = pc->pz;
105  double p1 = pc->e1;
106  double p2 = pc->e2;
107  for (iNeg = 0; iNeg < nNeg; ++iNeg) {
108  Particle* nc = nList[iNeg];
109  const reco::Track* nt = nc->track;
110  if (fabs(nt->dz() - pt->dz()) > dzMax)
111  continue;
112  double nx = nc->px;
113  double ny = nc->py;
114  double nz = nc->pz;
115  double n1 = nc->e1;
116  double n2 = nc->e2;
117  const float tx = px + nx;
118  const float ty = py + ny;
119  const float tz = pz + nz;
120  const float ta = ((p1 > 0.0) && (n2 > 0.0) ? p1 + n2 : -1.0);
121  const float tb = ((p2 > 0.0) && (n1 > 0.0) ? p2 + n1 : -1.0);
122  float ma = (ta > 0 ? (ta * ta) - ((tx * tx) + (ty * ty) + (tz * tz)) : -1.0);
123  float mb = (tb > 0 ? (tb * tb) - ((tx * tx) + (ty * ty) + (tz * tz)) : -1.0);
124  // if ( ma > 0.0 ) ma = sqrt( ma );
125  // else ma = -1.0;
126  // if ( mb > 0.0 ) mb = sqrt( mb );
127  // else mb = -1.0;
128  if (((ma < mSqMin) || (ma > mSqMax)) && ((mb < mSqMin) || (mb > mSqMax)))
129  continue;
130  BPHPlusMinusCandidatePtr rc(nullptr);
131  float rcMass = -1.0;
132  if (ma > 0.0) {
134  rc->add(d1Name, pc->cand, d1Mass, d1Sigma);
135  rc->add(d2Name, nc->cand, d2Mass, d2Sigma);
136  rcMass = rc->composite().mass();
137  }
138  BPHPlusMinusCandidatePtr rb(nullptr);
139  float rbMass = -1.0;
140  if (mb > 0.0) {
142  rb->add(d1Name, nc->cand, d1Mass, d1Sigma);
143  rb->add(d2Name, pc->cand, d2Mass, d2Sigma);
144  rbMass = rb->composite().mass();
145  }
146  BPHPlusMinusCandidatePtr* rp(nullptr);
147  double mass = -1.0;
148  if ((rc.get() != nullptr) && ((rb.get() == nullptr) || (fabs(rcMass - eMass) < fabs(rbMass - eMass)))) {
149  mass = rcMass;
150  rp = &rc;
151  } else {
152  mass = rbMass;
153  rp = &rb;
154  }
155  BPHPlusMinusCandidate* rr = rp->get();
156  if (mass < massMin)
157  continue;
158  if (mass > massMax)
159  continue;
160  if (!chi2Sel->accept(*rr))
161  continue;
162  recList.push_back(*rp);
163  }
164  }
165 
166  for (iPos = 0; iPos < nPos; ++iPos)
167  delete pList[iPos];
168  for (iNeg = 0; iNeg < nNeg; ++iNeg)
169  delete nList[iNeg];
170 
171  updated = true;
172  return recList;
173 }

References BPHChi2Select::accept(), addParticle(), BPHDecayToTkpTknSymChargeBuilder::Particle::cand, BPHDecayGenericBuilder::chi2Sel, BPHGenericPtr< T >::create(), d1Mass, d1Name, d1Sigma, d2Mass, d2Name, d2Sigma, dzMax, BPHDecayToTkpTknSymChargeBuilder::Particle::e1, BPHDecayToTkpTknSymChargeBuilder::Particle::e2, eMass, BPHDecayGenericBuilder::evSetup, BPHDecayGenericBuilder::getMassMax(), BPHDecayGenericBuilder::getMassMin(), EgHLTOffHistBins_cfi::mass, ZMuMuCategoriesSequences_cff::massMax, ZMuMuCategoriesSequences_cff::massMin, nCollection, nt, p1, p2, pCollection, DiDispStaMuonMonitor_cfi::pt, multPhiCorr_741_25nsDY_cfi::px, BPHDecayToTkpTknSymChargeBuilder::Particle::px, multPhiCorr_741_25nsDY_cfi::py, BPHDecayToTkpTknSymChargeBuilder::Particle::py, BPHDecayToTkpTknSymChargeBuilder::Particle::pz, recList, findQualityFiles::rr, BPHDecayToTkpTknSymChargeBuilder::Particle::track, and BPHDecayGenericBuilder::updated.

Referenced by BPHWriteSpecificDecay::fill().

◆ getDzMax()

double BPHDecayToTkpTknSymChargeBuilder::getDzMax ( ) const
inline

Definition at line 83 of file BPHDecayToTkpTknSymChargeBuilder.h.

83 { return dzMax; }

References dzMax.

◆ getTrk1EtaMax()

double BPHDecayToTkpTknSymChargeBuilder::getTrk1EtaMax ( ) const
inline

Definition at line 81 of file BPHDecayToTkpTknSymChargeBuilder.h.

81 { return eta1Max; }

References eta1Max.

Referenced by BPHKx0ToKPiBuilder::getPiEtaMax().

◆ getTrk1PtMin()

double BPHDecayToTkpTknSymChargeBuilder::getTrk1PtMin ( ) const
inline

get current cuts

Definition at line 79 of file BPHDecayToTkpTknSymChargeBuilder.h.

79 { return pt1Min; }

References pt1Min.

Referenced by BPHKx0ToKPiBuilder::getPiPtMin().

◆ getTrk2EtaMax()

double BPHDecayToTkpTknSymChargeBuilder::getTrk2EtaMax ( ) const
inline

Definition at line 82 of file BPHDecayToTkpTknSymChargeBuilder.h.

82 { return eta2Max; }

References eta2Max.

Referenced by BPHKx0ToKPiBuilder::getKEtaMax().

◆ getTrk2PtMin()

double BPHDecayToTkpTknSymChargeBuilder::getTrk2PtMin ( ) const
inline

Definition at line 80 of file BPHDecayToTkpTknSymChargeBuilder.h.

80 { return pt2Min; }

References pt2Min.

Referenced by BPHKx0ToKPiBuilder::getKPtMin().

◆ operator=()

BPHDecayToTkpTknSymChargeBuilder& BPHDecayToTkpTknSymChargeBuilder::operator= ( const BPHDecayToTkpTknSymChargeBuilder x)
delete

◆ setDzMax()

void BPHDecayToTkpTknSymChargeBuilder::setDzMax ( double  dz)

Definition at line 200 of file BPHDecayToTkpTknSymChargeBuilder.cc.

200  {
201  updated = false;
202  dzMax = dz;
203  return;
204 }

References PVValHelper::dz, dzMax, and BPHDecayGenericBuilder::updated.

◆ setTrk1EtaMax()

void BPHDecayToTkpTknSymChargeBuilder::setTrk1EtaMax ( double  eta)

◆ setTrk1PtMin()

void BPHDecayToTkpTknSymChargeBuilder::setTrk1PtMin ( double  pt)

set cuts

Definition at line 176 of file BPHDecayToTkpTknSymChargeBuilder.cc.

176  {
177  updated = false;
178  pt1Min = pt;
179  return;
180 }

References DiDispStaMuonMonitor_cfi::pt, pt1Min, and BPHDecayGenericBuilder::updated.

Referenced by BPHKx0ToKPiBuilder::BPHKx0ToKPiBuilder(), and BPHKx0ToKPiBuilder::setPtMin().

◆ setTrk2EtaMax()

void BPHDecayToTkpTknSymChargeBuilder::setTrk2EtaMax ( double  eta)

◆ setTrk2PtMin()

void BPHDecayToTkpTknSymChargeBuilder::setTrk2PtMin ( double  pt)

Member Data Documentation

◆ d1Mass

double BPHDecayToTkpTknSymChargeBuilder::d1Mass
private

Definition at line 87 of file BPHDecayToTkpTknSymChargeBuilder.h.

Referenced by addParticle(), and build().

◆ d1Name

std::string BPHDecayToTkpTknSymChargeBuilder::d1Name
private

Definition at line 86 of file BPHDecayToTkpTknSymChargeBuilder.h.

Referenced by build().

◆ d1Sigma

double BPHDecayToTkpTknSymChargeBuilder::d1Sigma
private

Definition at line 88 of file BPHDecayToTkpTknSymChargeBuilder.h.

Referenced by build().

◆ d2Mass

double BPHDecayToTkpTknSymChargeBuilder::d2Mass
private

Definition at line 90 of file BPHDecayToTkpTknSymChargeBuilder.h.

Referenced by addParticle(), and build().

◆ d2Name

std::string BPHDecayToTkpTknSymChargeBuilder::d2Name
private

Definition at line 89 of file BPHDecayToTkpTknSymChargeBuilder.h.

Referenced by build().

◆ d2Sigma

double BPHDecayToTkpTknSymChargeBuilder::d2Sigma
private

Definition at line 91 of file BPHDecayToTkpTknSymChargeBuilder.h.

Referenced by build().

◆ dzMax

double BPHDecayToTkpTknSymChargeBuilder::dzMax
private

Definition at line 101 of file BPHDecayToTkpTknSymChargeBuilder.h.

Referenced by build(), getDzMax(), and setDzMax().

◆ eMass

double BPHDecayToTkpTknSymChargeBuilder::eMass
private

Definition at line 92 of file BPHDecayToTkpTknSymChargeBuilder.h.

Referenced by build().

◆ eta1Max

double BPHDecayToTkpTknSymChargeBuilder::eta1Max
private

Definition at line 99 of file BPHDecayToTkpTknSymChargeBuilder.h.

Referenced by addParticle(), getTrk1EtaMax(), and setTrk1EtaMax().

◆ eta2Max

double BPHDecayToTkpTknSymChargeBuilder::eta2Max
private

Definition at line 100 of file BPHDecayToTkpTknSymChargeBuilder.h.

Referenced by addParticle(), getTrk2EtaMax(), and setTrk2EtaMax().

◆ nCollection

const BPHRecoBuilder::BPHGenericCollection* BPHDecayToTkpTknSymChargeBuilder::nCollection
private

Definition at line 95 of file BPHDecayToTkpTknSymChargeBuilder.h.

Referenced by build().

◆ pCollection

const BPHRecoBuilder::BPHGenericCollection* BPHDecayToTkpTknSymChargeBuilder::pCollection
private

Definition at line 94 of file BPHDecayToTkpTknSymChargeBuilder.h.

Referenced by build().

◆ pt1Min

double BPHDecayToTkpTknSymChargeBuilder::pt1Min
private

Definition at line 97 of file BPHDecayToTkpTknSymChargeBuilder.h.

Referenced by addParticle(), getTrk1PtMin(), and setTrk1PtMin().

◆ pt2Min

double BPHDecayToTkpTknSymChargeBuilder::pt2Min
private

Definition at line 98 of file BPHDecayToTkpTknSymChargeBuilder.h.

Referenced by addParticle(), getTrk2PtMin(), and setTrk2PtMin().

◆ recList

std::vector<BPHPlusMinusConstCandPtr> BPHDecayToTkpTknSymChargeBuilder::recList
private

Definition at line 103 of file BPHDecayToTkpTknSymChargeBuilder.h.

Referenced by build().

mps_fire.i
i
Definition: mps_fire.py:355
BPHDecayToTkpTknSymChargeBuilder::addParticle
void addParticle(const BPHRecoBuilder::BPHGenericCollection *collection, int charge, std::vector< Particle * > &list)
Definition: BPHDecayToTkpTknSymChargeBuilder.cc:206
dqmiodumpmetadata.n
n
Definition: dqmiodumpmetadata.py:28
BPHDecayGenericBuilder::getMassMax
double getMassMax() const
Definition: BPHDecayGenericBuilder.h:63
nt
int nt
Definition: AMPTWrapper.h:42
DiDispStaMuonMonitor_cfi.pt
pt
Definition: DiDispStaMuonMonitor_cfi.py:39
findQualityFiles.rr
string rr
Definition: findQualityFiles.py:185
multPhiCorr_741_25nsDY_cfi.py
py
Definition: multPhiCorr_741_25nsDY_cfi.py:12
BPHPlusMinusCandidatePtr
BPHGenericPtr< BPHPlusMinusCandidate >::type BPHPlusMinusCandidatePtr
Definition: BPHPlusMinusCandidatePtr.h:7
BPHDecayToTkpTknSymChargeBuilder::d1Name
std::string d1Name
Definition: BPHDecayToTkpTknSymChargeBuilder.h:86
BPHDecayToTkpTknSymChargeBuilder::dzMax
double dzMax
Definition: BPHDecayToTkpTknSymChargeBuilder.h:101
data-class-funcs.q
q
Definition: data-class-funcs.py:169
BPHDecayToTkpTknSymChargeBuilder::nCollection
const BPHRecoBuilder::BPHGenericCollection * nCollection
Definition: BPHDecayToTkpTknSymChargeBuilder.h:95
BPHPlusMinusCandidate
Definition: BPHPlusMinusCandidate.h:32
BPHDecayToTkpTknSymChargeBuilder::pt1Min
double pt1Min
Definition: BPHDecayToTkpTknSymChargeBuilder.h:97
ZMuMuCategoriesSequences_cff.massMin
massMin
Definition: ZMuMuCategoriesSequences_cff.py:136
BPHDecayToTkpTknSymChargeBuilder::d2Name
std::string d2Name
Definition: BPHDecayToTkpTknSymChargeBuilder.h:89
BPHTrackReference::getTrack
static const reco::Track * getTrack(const reco::Candidate &rc, const char *modeList="cfhbpmnigset", char *modeFlag=nullptr)
Definition: BPHTrackReference.h:60
BPHDecayToTkpTknSymChargeBuilder::eta2Max
double eta2Max
Definition: BPHDecayToTkpTknSymChargeBuilder.h:100
BPHDecayGenericBuilder::updated
bool updated
Definition: BPHDecayGenericBuilder.h:80
PVValHelper::eta
Definition: PVValidationHelpers.h:69
mathSSE::sqrt
T sqrt(T t)
Definition: SSEVec.h:19
BPHDecayToTkpTknSymChargeBuilder::pt2Min
double pt2Min
Definition: BPHDecayToTkpTknSymChargeBuilder.h:98
reco::Track
Definition: Track.h:27
p2
double p2[4]
Definition: TauolaWrapper.h:90
BPHDecayToTkpTknSymChargeBuilder::recList
std::vector< BPHPlusMinusConstCandPtr > recList
Definition: BPHDecayToTkpTknSymChargeBuilder.h:103
BPHDecayToTkpTknSymChargeBuilder::d1Mass
double d1Mass
Definition: BPHDecayToTkpTknSymChargeBuilder.h:87
ALCARECOTkAlJpsiMuMu_cff.charge
charge
Definition: ALCARECOTkAlJpsiMuMu_cff.py:47
BPHDecayGenericBuilder::evSetup
const edm::EventSetup * evSetup
Definition: BPHDecayGenericBuilder.h:73
BPHDecayGenericBuilder::chi2Sel
BPHChi2Select * chi2Sel
Definition: BPHDecayGenericBuilder.h:76
BPHDecayToTkpTknSymChargeBuilder::pCollection
const BPHRecoBuilder::BPHGenericCollection * pCollection
Definition: BPHDecayToTkpTknSymChargeBuilder.h:94
StorageManager_cfg.e1
e1
Definition: StorageManager_cfg.py:16
cand
Definition: decayParser.h:34
BPHDecayToTkpTknSymChargeBuilder::eMass
double eMass
Definition: BPHDecayToTkpTknSymChargeBuilder.h:92
universalConfigTemplate.collection
collection
Definition: universalConfigTemplate.py:81
p4
double p4[4]
Definition: TauolaWrapper.h:92
p1
double p1[4]
Definition: TauolaWrapper.h:89
ZMuMuCategoriesSequences_cff.massMax
massMax
Definition: ZMuMuCategoriesSequences_cff.py:137
BPHDecayToTkpTknSymChargeBuilder::d1Sigma
double d1Sigma
Definition: BPHDecayToTkpTknSymChargeBuilder.h:88
reco::Candidate
Definition: Candidate.h:27
multPhiCorr_741_25nsDY_cfi.px
px
Definition: multPhiCorr_741_25nsDY_cfi.py:10
BPHDecayToTkpTknSymChargeBuilder::d2Mass
double d2Mass
Definition: BPHDecayToTkpTknSymChargeBuilder.h:90
PVValHelper::dz
Definition: PVValidationHelpers.h:50
BPHDecayGenericBuilder::BPHDecayGenericBuilder
BPHDecayGenericBuilder(const edm::EventSetup &es, BPHMassFitSelect *mfs=nullptr)
Definition: BPHDecayGenericBuilder.cc:29
EgHLTOffHistBins_cfi.mass
mass
Definition: EgHLTOffHistBins_cfi.py:34
Particle
Definition: Particle.py:1
list
How EventSelector::AcceptEvent() decides whether to accept an event for output otherwise it is excluding the probing of A single or multiple positive and the trigger will pass if any such matching triggers are PASS or EXCEPTION[A criterion thatmatches no triggers at all is detected and causes a throw.] A single negative with an expectation of appropriate bit checking in the decision and the trigger will pass if any such matching triggers are FAIL or EXCEPTION A wildcarded negative criterion that matches more than one trigger in the trigger list("!*", "!HLTx*" if it matches 2 triggers or more) will accept the event if all the matching triggers are FAIL. It will reject the event if any of the triggers are PASS or EXCEPTION(this matches the behavior of "!*" before the partial wildcard feature was incorporated). Triggers which are in the READY state are completely ignored.(READY should never be returned since the trigger paths have been run
BPHChi2Select::accept
bool accept(const BPHDecayVertex &cand) const override
select vertex
Definition: BPHChi2Select.h:48
BPHDecayToTkpTknSymChargeBuilder::eta1Max
double eta1Max
Definition: BPHDecayToTkpTknSymChargeBuilder.h:99
reco::Candidate::LorentzVector
math::XYZTLorentzVector LorentzVector
Lorentz vector.
Definition: Candidate.h:36
BPHGenericPtr::create
static type create(Args &&... args)
Definition: BPHGenericPtr.h:10
BPHDecayGenericBuilder::getMassMin
double getMassMin() const
get current cuts
Definition: BPHDecayGenericBuilder.h:62
BPHDecayToTkpTknSymChargeBuilder::d2Sigma
double d2Sigma
Definition: BPHDecayToTkpTknSymChargeBuilder.h:91