CMS 3D CMS Logo

List of all members | Public Types | Public Member Functions | Private Attributes
CosmicTrackingParticleSelector Class Reference

#include <CosmicTrackingParticleSelector.h>

Public Types

typedef TrackingParticleCollection collection
 
typedef container::const_iterator const_iterator
 
typedef std::vector< const TrackingParticle * > container
 

Public Member Functions

const_iterator begin () const
 
 CosmicTrackingParticleSelector ()
 
 CosmicTrackingParticleSelector (const edm::ParameterSet &cfg, edm::ConsumesCollector &&iC)
 
 CosmicTrackingParticleSelector (double ptMin, double minRapidity, double maxRapidity, double tip, double lip, int minHit, bool chargedOnly, const std::vector< int > &pdgId=std::vector< int >())
 
const_iterator end () const
 
void initEvent (edm::Handle< SimHitTPAssociationProducer::SimHitTPAssociationList > simHitsTPAssocToSet) const
 
bool operator() (const TrackingParticleRef tpr, const reco::BeamSpot *bs, const edm::Event &iEvent, const edm::EventSetup &iSetup) const
 
void select (const edm::Handle< collection > &c, const edm::Event &event, const edm::EventSetup &setup)
 
size_t size () const
 

Private Attributes

edm::EDGetTokenT< reco::BeamSpotbeamSpotToken_
 
bool chargedOnly_
 
double lip_
 
double maxRapidity_
 
int minHit_
 
double minRapidity_
 
std::vector< int > pdgId_
 
double ptMin_
 
container selected_
 
edm::Handle< SimHitTPAssociationProducer::SimHitTPAssociationListsimHitsTPAssoc
 
double tip_
 

Detailed Description

Definition at line 39 of file CosmicTrackingParticleSelector.h.

Member Typedef Documentation

◆ collection

Definition at line 41 of file CosmicTrackingParticleSelector.h.

◆ const_iterator

typedef container::const_iterator CosmicTrackingParticleSelector::const_iterator

Definition at line 43 of file CosmicTrackingParticleSelector.h.

◆ container

Definition at line 42 of file CosmicTrackingParticleSelector.h.

Constructor & Destructor Documentation

◆ CosmicTrackingParticleSelector() [1/3]

CosmicTrackingParticleSelector::CosmicTrackingParticleSelector ( )
inline

Definition at line 45 of file CosmicTrackingParticleSelector.h.

45 {}

◆ CosmicTrackingParticleSelector() [2/3]

CosmicTrackingParticleSelector::CosmicTrackingParticleSelector ( double  ptMin,
double  minRapidity,
double  maxRapidity,
double  tip,
double  lip,
int  minHit,
bool  chargedOnly,
const std::vector< int > &  pdgId = std::vector<int>() 
)
inline

Definition at line 47 of file CosmicTrackingParticleSelector.h.

◆ CosmicTrackingParticleSelector() [3/3]

CosmicTrackingParticleSelector::CosmicTrackingParticleSelector ( const edm::ParameterSet cfg,
edm::ConsumesCollector &&  iC 
)
inline

Definition at line 64 of file CosmicTrackingParticleSelector.h.

65  : ptMin_(cfg.getParameter<double>("ptMin")),
66  minRapidity_(cfg.getParameter<double>("minRapidity")),
67  maxRapidity_(cfg.getParameter<double>("maxRapidity")),
68  tip_(cfg.getParameter<double>("tip")),
69  lip_(cfg.getParameter<double>("lip")),
70  minHit_(cfg.getParameter<int>("minHit")),
71  chargedOnly_(cfg.getParameter<bool>("chargedOnly")),
72  pdgId_(cfg.getParameter<std::vector<int> >("pdgId")),
73  beamSpotToken_(iC.consumes<reco::BeamSpot>(edm::InputTag("offlineBeamSpot"))) {}

Member Function Documentation

◆ begin()

const_iterator CosmicTrackingParticleSelector::begin ( void  ) const
inline

Definition at line 85 of file CosmicTrackingParticleSelector.h.

85 { return selected_.begin(); }

References selected_.

◆ end()

const_iterator CosmicTrackingParticleSelector::end ( void  ) const
inline

Definition at line 86 of file CosmicTrackingParticleSelector.h.

86 { return selected_.end(); }

References selected_.

Referenced by Types.LuminosityBlockRange::cppID(), and Types.EventRange::cppID().

◆ initEvent()

void CosmicTrackingParticleSelector::initEvent ( edm::Handle< SimHitTPAssociationProducer::SimHitTPAssociationList simHitsTPAssocToSet) const
inline

Definition at line 88 of file CosmicTrackingParticleSelector.h.

88  {
89  simHitsTPAssoc = simHitsTPAssocToSet;
90  }

References simHitsTPAssoc.

◆ operator()()

bool CosmicTrackingParticleSelector::operator() ( const TrackingParticleRef  tpr,
const reco::BeamSpot bs,
const edm::Event iEvent,
const edm::EventSetup iSetup 
) const
inline

Definition at line 93 of file CosmicTrackingParticleSelector.h.

96  {
97  if (chargedOnly_ && tpr->charge() == 0)
98  return false; //select only if charge!=0
99  //bool testId = false;
100  //unsigned int idSize = pdgId_.size();
101  //if (idSize==0) testId = true;
102  //else for (unsigned int it=0;it!=idSize;++it){
103  //if (tpr->pdgId()==pdgId_[it]) testId = true;
104  //}
105 
109  iSetup.get<GlobalTrackingGeometryRecord>().get(theGeometry);
110 
112  iSetup.get<IdealMagneticFieldRecord>().get(theMF);
113 
114  GlobalVector finalGV(0, 0, 0);
115  GlobalPoint finalGP(0, 0, 0);
116  GlobalVector momentum(0, 0, 0); //At the PCA
117  GlobalPoint vertex(0, 0, 0); //At the PCA
118  double radius(9999);
119  bool found(false);
120 
121  int ii = 0;
122  DetId::Detector det;
123  int subdet;
124 
125  edm::LogVerbatim("CosmicTrackingParticleSelector")
126  << "TOT Number of PSimHits = " << tpr->numberOfHits()
127  << ", Number of Tracker PSimHits = " << tpr->numberOfTrackerHits() << "\n";
128 
129  if (simHitsTPAssoc.isValid() == 0) {
130  edm::LogError("CosmicTrackingParticleSelector") << "Invalid handle!";
131  return false;
132  }
133  std::pair<TrackingParticleRef, TrackPSimHitRef> clusterTPpairWithDummyTP(
134  tpr, TrackPSimHitRef()); //SimHit is dummy: for simHitTPAssociationListGreater
135  // sorting only the cluster is needed
136  auto range = std::equal_range(simHitsTPAssoc->begin(),
137  simHitsTPAssoc->end(),
138  clusterTPpairWithDummyTP,
140  for (auto ip = range.first; ip != range.second; ++ip) {
141  TrackPSimHitRef it = ip->second;
142  ++ii;
143  const GeomDet* tmpDet = theGeometry->idToDet(DetId(it->detUnitId()));
144  if (!tmpDet) {
145  edm::LogVerbatim("CosmicTrackingParticleSelector")
146  << "***WARNING: PSimHit " << ii << ", no GeomDet for: " << it->detUnitId() << ". Skipping it.";
147  continue;
148  } else {
149  det = DetId(it->detUnitId()).det();
150  subdet = DetId(it->detUnitId()).subdetId();
151  }
152 
153  LocalVector lv = it->momentumAtEntry();
154  Local3DPoint lp = it->localPosition();
155  GlobalVector gv = tmpDet->surface().toGlobal(lv);
156  GlobalPoint gp = tmpDet->surface().toGlobal(lp);
157  edm::LogVerbatim("CosmicTrackingParticleSelector")
158  << "PSimHit " << ii << ", Detector = " << det << ", subdet = " << subdet << "\t Radius = " << gp.perp()
159  << ", z = " << gp.z() << "\t pt = " << gv.perp() << ", pz = " << gv.z();
160  edm::LogVerbatim("CosmicTrackingParticleSelector")
161  << "\t trackId = " << it->trackId() << ", particleType = " << it->particleType()
162  << ", processType = " << it->processType();
163 
164  // discard hits related to low energy debris from the primary particle
165  if (it->processType() != 0)
166  continue;
167 
168  if (gp.perp() < radius) {
169  found = true;
170  radius = gp.perp();
171  finalGV = gv;
172  finalGP = gp;
173  }
174  }
175  edm::LogVerbatim("CosmicTrackingParticleSelector")
176  << "\n"
177  << "FINAL State at InnerMost Hit: Radius = " << finalGP.perp() << ", z = " << finalGP.z()
178  << ", pt = " << finalGV.perp() << ", pz = " << finalGV.z();
179 
180  if (!found)
181  return false;
182  else {
183  FreeTrajectoryState ftsAtProduction(finalGP, finalGV, TrackCharge(tpr->charge()), theMF.product());
184  TSCBLBuilderNoMaterial tscblBuilder;
185  //as in TrackProducerAlgorithm
186  TrajectoryStateClosestToBeamLine tsAtClosestApproach = tscblBuilder(ftsAtProduction, *bs);
187  if (!tsAtClosestApproach.isValid()) {
188  edm::LogVerbatim("CosmicTrackingParticleSelector")
189  << "*** WARNING in CosmicTrackingParticleSelector: tsAtClosestApproach is not valid."
190  << "\n";
191  return false;
192  } else {
193  momentum = tsAtClosestApproach.trackStateAtPCA().momentum();
194  vertex = tsAtClosestApproach.trackStateAtPCA().position();
195 
196  edm::LogVerbatim("CosmicTrackingParticleSelector")
197  << "FINAL State extrapolated at PCA: Radius = " << vertex.perp() << ", z = " << vertex.z()
198  << ", pt = " << momentum.perp() << ", pz = " << momentum.z() << "\n";
199 
200  return (tpr->numberOfTrackerLayers() >= minHit_ && sqrt(momentum.perp2()) >= ptMin_ &&
201  momentum.eta() >= minRapidity_ && momentum.eta() <= maxRapidity_ && sqrt(vertex.perp2()) <= tip_ &&
202  fabs(vertex.z()) <= lip_);
203  }
204  }
205  }

References cms::cuda::bs, chargedOnly_, PV3DBase< T, PVType, FrameType >::eta(), newFWLiteAna::found, edm::EventSetup::get(), get, runTauDisplay::gp, GlobalTrackingGeometry::idToDet(), cuy::ii, TrajectoryStateClosestToBeamLine::isValid(), edm::HandleBase::isValid(), lip_, maxRapidity_, minHit_, minRapidity_, FreeTrajectoryState::momentum(), PV3DBase< T, PVType, FrameType >::perp(), PV3DBase< T, PVType, FrameType >::perp2(), FreeTrajectoryState::position(), edm::ESHandle< T >::product(), ptMin_, CosmicsPD_Skims::radius, FastTimerService_cff::range, simHitsTPAssoc, SimHitTPAssociationProducer::simHitTPAssociationListGreater(), mathSSE::sqrt(), GeomDet::surface(), tip_, Surface::toGlobal(), PbPb_ZMuSkimMuonDPG_cff::tracker, TrajectoryStateClosestToBeamLine::trackStateAtPCA(), bphysicsOniaDQM_cfi::vertex, and PV3DBase< T, PVType, FrameType >::z().

◆ select()

void CosmicTrackingParticleSelector::select ( const edm::Handle< collection > &  c,
const edm::Event event,
const edm::EventSetup setup 
)
inline

Definition at line 75 of file CosmicTrackingParticleSelector.h.

75  {
76  selected_.clear();
78  event.getByToken(beamSpotToken_, beamSpot);
79  for (TrackingParticleCollection::const_iterator itp = c->begin(); itp != c->end(); ++itp)
80  if (operator()(TrackingParticleRef(c, itp - c->begin()), beamSpot.product(), event, setup)) {
81  selected_.push_back(&*itp);
82  }
83  }

References pwdgSkimBPark_cfi::beamSpot, beamSpotToken_, HltBtagPostValidation_cff::c, event(), selected_, and singleTopDQM_cfi::setup.

◆ size()

size_t CosmicTrackingParticleSelector::size ( void  ) const
inline

Definition at line 207 of file CosmicTrackingParticleSelector.h.

207 { return selected_.size(); }

References selected_.

Referenced by ntupleDataFormat._Collection::__iter__(), and ntupleDataFormat._Collection::__len__().

Member Data Documentation

◆ beamSpotToken_

edm::EDGetTokenT<reco::BeamSpot> CosmicTrackingParticleSelector::beamSpotToken_
private

Definition at line 219 of file CosmicTrackingParticleSelector.h.

Referenced by select().

◆ chargedOnly_

bool CosmicTrackingParticleSelector::chargedOnly_
private

Definition at line 216 of file CosmicTrackingParticleSelector.h.

Referenced by operator()().

◆ lip_

double CosmicTrackingParticleSelector::lip_
private

Definition at line 214 of file CosmicTrackingParticleSelector.h.

Referenced by operator()().

◆ maxRapidity_

double CosmicTrackingParticleSelector::maxRapidity_
private

Definition at line 212 of file CosmicTrackingParticleSelector.h.

Referenced by operator()().

◆ minHit_

int CosmicTrackingParticleSelector::minHit_
private

Definition at line 215 of file CosmicTrackingParticleSelector.h.

Referenced by operator()().

◆ minRapidity_

double CosmicTrackingParticleSelector::minRapidity_
private

Definition at line 211 of file CosmicTrackingParticleSelector.h.

Referenced by operator()().

◆ pdgId_

std::vector<int> CosmicTrackingParticleSelector::pdgId_
private

Definition at line 217 of file CosmicTrackingParticleSelector.h.

◆ ptMin_

double CosmicTrackingParticleSelector::ptMin_
private

Definition at line 210 of file CosmicTrackingParticleSelector.h.

Referenced by operator()().

◆ selected_

container CosmicTrackingParticleSelector::selected_
private

Definition at line 218 of file CosmicTrackingParticleSelector.h.

Referenced by begin(), end(), select(), and size().

◆ simHitsTPAssoc

edm::Handle<SimHitTPAssociationProducer::SimHitTPAssociationList> CosmicTrackingParticleSelector::simHitsTPAssoc
mutableprivate

Definition at line 221 of file CosmicTrackingParticleSelector.h.

Referenced by initEvent(), and operator()().

◆ tip_

double CosmicTrackingParticleSelector::tip_
private

Definition at line 213 of file CosmicTrackingParticleSelector.h.

Referenced by operator()().

Vector3DBase
Definition: Vector3DBase.h:8
edm::ESHandle::product
T const * product() const
Definition: ESHandle.h:86
FreeTrajectoryState::momentum
GlobalVector momentum() const
Definition: FreeTrajectoryState.h:68
TrajectoryStateClosestToBeamLine
Definition: TrajectoryStateClosestToBeamLine.h:15
FastTimerService_cff.range
range
Definition: FastTimerService_cff.py:34
CosmicTrackingParticleSelector::maxRapidity_
double maxRapidity_
Definition: CosmicTrackingParticleSelector.h:212
CosmicTrackingParticleSelector::pdgId_
std::vector< int > pdgId_
Definition: CosmicTrackingParticleSelector.h:217
pwdgSkimBPark_cfi.beamSpot
beamSpot
Definition: pwdgSkimBPark_cfi.py:5
CosmicTrackingParticleSelector::simHitsTPAssoc
edm::Handle< SimHitTPAssociationProducer::SimHitTPAssociationList > simHitsTPAssoc
Definition: CosmicTrackingParticleSelector.h:221
CosmicTrackingParticleSelector::lip_
double lip_
Definition: CosmicTrackingParticleSelector.h:214
TrackCharge
int TrackCharge
Definition: TrackCharge.h:4
GeomDet
Definition: GeomDet.h:27
qcdUeDQM_cfi.minRapidity
minRapidity
Definition: qcdUeDQM_cfi.py:24
qcdUeDQM_cfi.maxRapidity
maxRapidity
Definition: qcdUeDQM_cfi.py:27
CosmicTrackingParticleSelector::tip_
double tip_
Definition: CosmicTrackingParticleSelector.h:213
ptMin
constexpr float ptMin
Definition: PhotonIDValueMapProducer.cc:153
CosmicTrackingParticleSelector::minRapidity_
double minRapidity_
Definition: CosmicTrackingParticleSelector.h:211
GlobalTrackingGeometryRecord
Definition: GlobalTrackingGeometryRecord.h:17
FreeTrajectoryState::position
GlobalPoint position() const
Definition: FreeTrajectoryState.h:67
CosmicTrackingParticleSelector::chargedOnly_
bool chargedOnly_
Definition: CosmicTrackingParticleSelector.h:216
newFWLiteAna.found
found
Definition: newFWLiteAna.py:118
edm::Handle< reco::BeamSpot >
singleTopDQM_cfi.setup
setup
Definition: singleTopDQM_cfi.py:37
edm::Ref
Definition: AssociativeIterator.h:58
qcdUeDQM_cfi.lip
lip
Definition: qcdUeDQM_cfi.py:25
PV3DBase::z
T z() const
Definition: PV3DBase.h:61
IdealMagneticFieldRecord
Definition: IdealMagneticFieldRecord.h:11
DetId
Definition: DetId.h:17
GeomDet::surface
const Plane & surface() const
The nominal surface of the GeomDet.
Definition: GeomDet.h:37
cms::cuda::bs
bs
Definition: HistoContainer.h:127
edm::EventSetup::get
T get() const
Definition: EventSetup.h:73
TrackerDigiGeometryRecord
Definition: TrackerDigiGeometryRecord.h:15
mathSSE::sqrt
T sqrt(T t)
Definition: SSEVec.h:19
Surface::toGlobal
GlobalPoint toGlobal(const Point2DBase< Scalar, LocalTag > lp) const
Definition: Surface.h:79
reco::BeamSpot
Definition: BeamSpot.h:21
edm::ESHandle< TrackerGeometry >
edm::ConsumesCollector::consumes
EDGetTokenT< ProductType > consumes(edm::InputTag const &tag)
Definition: ConsumesCollector.h:49
CosmicTrackingParticleSelector::selected_
container selected_
Definition: CosmicTrackingParticleSelector.h:218
Point3DBase< float, GlobalTag >
qcdUeDQM_cfi.tip
tip
Definition: qcdUeDQM_cfi.py:23
PbPb_ZMuSkimMuonDPG_cff.tracker
tracker
Definition: PbPb_ZMuSkimMuonDPG_cff.py:60
runTauDisplay.gp
gp
Definition: runTauDisplay.py:431
bphysicsOniaDQM_cfi.vertex
vertex
Definition: bphysicsOniaDQM_cfi.py:7
edm::LogError
Definition: MessageLogger.h:183
edm::LogVerbatim
Definition: MessageLogger.h:297
EgammaValidation_cff.pdgId
pdgId
Definition: EgammaValidation_cff.py:118
DetId::Detector
Detector
Definition: DetId.h:24
HltBtagPostValidation_cff.c
c
Definition: HltBtagPostValidation_cff.py:31
qcdUeDQM_cfi.minHit
minHit
Definition: qcdUeDQM_cfi.py:33
get
#define get
looper.cfg
cfg
Definition: looper.py:297
FreeTrajectoryState
Definition: FreeTrajectoryState.h:27
TSCBLBuilderNoMaterial
Definition: TSCBLBuilderNoMaterial.h:13
GlobalTrackingGeometry::idToDet
const GeomDet * idToDet(DetId) const override
Definition: GlobalTrackingGeometry.cc:44
CosmicTrackingParticleSelector::beamSpotToken_
edm::EDGetTokenT< reco::BeamSpot > beamSpotToken_
Definition: CosmicTrackingParticleSelector.h:219
CosmicsPD_Skims.radius
radius
Definition: CosmicsPD_Skims.py:135
CosmicTrackingParticleSelector::minHit_
int minHit_
Definition: CosmicTrackingParticleSelector.h:215
TrackPSimHitRef
edm::Ref< edm::PSimHitContainer > TrackPSimHitRef
Definition: PSimHitContainer.h:14
cosmictrackingParticleSelector_cfi.chargedOnly
chargedOnly
Definition: cosmictrackingParticleSelector_cfi.py:5
CosmicTrackingParticleSelector::ptMin_
double ptMin_
Definition: CosmicTrackingParticleSelector.h:210
TrajectoryStateClosestToBeamLine::isValid
bool isValid() const
Definition: TrajectoryStateClosestToBeamLine.h:50
TrackingParticleRef
edm::Ref< TrackingParticleCollection > TrackingParticleRef
Definition: TrackingParticleFwd.h:10
TrajectoryStateClosestToBeamLine::trackStateAtPCA
FTS const & trackStateAtPCA() const
Definition: TrajectoryStateClosestToBeamLine.h:32
edm::HandleBase::isValid
bool isValid() const
Definition: HandleBase.h:70
event
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 but the state exists so we define the behavior If all triggers are the negative crieriion will lead to accepting the event(this again matches the behavior of "!*" before the partial wildcard feature was incorporated). The per-event "cost" of each negative criterion with multiple relevant triggers is about the same as ! *was in the past
PV3DBase::perp
T perp() const
Definition: PV3DBase.h:69
cuy.ii
ii
Definition: cuy.py:590
edm::InputTag
Definition: InputTag.h:15
SimHitTPAssociationProducer::simHitTPAssociationListGreater
static bool simHitTPAssociationListGreater(SimHitTPPair i, SimHitTPPair j)
Definition: SimHitTPAssociationProducer.h:23