CMS 3D CMS Logo

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

#include <ShallowTrackClustersProducer.h>

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

Public Member Functions

 ShallowTrackClustersProducer (const edm::ParameterSet &)
 
- Public Member Functions inherited from edm::stream::EDProducer<>
 EDProducer ()=default
 
bool hasAbilityToProduceInBeginLumis () const final
 
bool hasAbilityToProduceInBeginProcessBlocks () const final
 
bool hasAbilityToProduceInBeginRuns () const final
 
bool hasAbilityToProduceInEndLumis () const final
 
bool hasAbilityToProduceInEndProcessBlocks () const final
 
bool hasAbilityToProduceInEndRuns () const final
 

Private Member Functions

void produce (edm::Event &, const edm::EventSetup &) override
 

Private Attributes

const edm::EDGetTokenT< TrajTrackAssociationCollectionassociation_token_
 
const edm::EDGetTokenT< edmNew::DetSetVector< SiStripCluster > > clusters_token_
 
const edm::ESGetToken< TrackerGeometry, TrackerDigiGeometryRecordgeomToken_
 
const edm::ESGetToken< SiStripLorentzAngle, SiStripLorentzAngleDepRcdlaToken_
 
const edm::ESGetToken< MagneticField, IdealMagneticFieldRecordmagFieldToken_
 
std::string Prefix
 
std::string Suffix
 
const edm::EDGetTokenT< edm::View< reco::Track > > tracks_token_
 

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 19 of file ShallowTrackClustersProducer.h.

Constructor & Destructor Documentation

◆ ShallowTrackClustersProducer()

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

Definition at line 18 of file ShallowTrackClustersProducer.cc.

19  : tracks_token_(consumes<edm::View<reco::Track>>(iConfig.getParameter<edm::InputTag>("Tracks"))),
20  association_token_(consumes<TrajTrackAssociationCollection>(iConfig.getParameter<edm::InputTag>("Tracks"))),
22  geomToken_(esConsumes<TrackerGeometry, TrackerDigiGeometryRecord>()),
23  magFieldToken_(esConsumes<MagneticField, IdealMagneticFieldRecord>()),
24  laToken_(esConsumes<SiStripLorentzAngle, SiStripLorentzAngleDepRcd>()),
25  Suffix(iConfig.getParameter<std::string>("Suffix")),
26  Prefix(iConfig.getParameter<std::string>("Prefix")) {
27  produces<std::vector<int>>(Prefix + "clusterIdx" + Suffix); //link: on trk cluster --> general cluster info
28  produces<std::vector<int>>(Prefix + "onTrkClusterIdx" + Suffix); //link: general cluster info --> on track cluster
29  produces<std::vector<int>>(Prefix + "onTrkClustersBegin" + Suffix); //link: track --> onTrkInfo (range)
30  produces<std::vector<int>>(Prefix + "onTrkClustersEnd" + Suffix); //link: track --> onTrkInfo (range)
31  produces<std::vector<int>>(Prefix + "trackindex" + Suffix); //link: on trk cluster --> track index
32 
33  produces<std::vector<unsigned int>>(Prefix + "trackmulti" + Suffix);
34  produces<std::vector<float>>(Prefix + "localtheta" + Suffix);
35  produces<std::vector<float>>(Prefix + "localphi" + Suffix);
36  produces<std::vector<float>>(Prefix + "localpitch" + Suffix);
37  produces<std::vector<float>>(Prefix + "localx" + Suffix);
38  produces<std::vector<float>>(Prefix + "localy" + Suffix);
39  produces<std::vector<float>>(Prefix + "localz" + Suffix);
40  produces<std::vector<float>>(Prefix + "strip" + Suffix);
41  produces<std::vector<float>>(Prefix + "globaltheta" + Suffix);
42  produces<std::vector<float>>(Prefix + "globalphi" + Suffix);
43  produces<std::vector<float>>(Prefix + "globalx" + Suffix);
44  produces<std::vector<float>>(Prefix + "globaly" + Suffix);
45  produces<std::vector<float>>(Prefix + "globalz" + Suffix);
46  produces<std::vector<float>>(Prefix + "insidistance" + Suffix);
47  produces<std::vector<float>>(Prefix + "covered" + Suffix);
48  produces<std::vector<float>>(Prefix + "projwidth" + Suffix);
49  produces<std::vector<float>>(Prefix + "BdotY" + Suffix);
50 
51  produces<std::vector<float>>(Prefix + "rhlocalx" + Suffix);
52  produces<std::vector<float>>(Prefix + "rhlocaly" + Suffix);
53  produces<std::vector<float>>(Prefix + "rhlocalxerr" + Suffix);
54  produces<std::vector<float>>(Prefix + "rhlocalyerr" + Suffix);
55  produces<std::vector<float>>(Prefix + "rhglobalx" + Suffix);
56  produces<std::vector<float>>(Prefix + "rhglobaly" + Suffix);
57  produces<std::vector<float>>(Prefix + "rhglobalz" + Suffix);
58  produces<std::vector<float>>(Prefix + "rhstrip" + Suffix);
59  produces<std::vector<float>>(Prefix + "rhmerr" + Suffix);
60 
61  produces<std::vector<float>>(Prefix + "ubstrip" + Suffix);
62  produces<std::vector<float>>(Prefix + "ubmerr" + Suffix);
63 
64  produces<std::vector<float>>(Prefix + "driftx" + Suffix);
65  produces<std::vector<float>>(Prefix + "drifty" + Suffix);
66  produces<std::vector<float>>(Prefix + "driftz" + Suffix);
67  produces<std::vector<float>>(Prefix + "globalZofunitlocalY" + Suffix);
68 }

References Prefix, and Suffix.

Member Function Documentation

◆ produce()

void ShallowTrackClustersProducer::produce ( edm::Event iEvent,
const edm::EventSetup iSetup 
)
overrideprivate

Definition at line 70 of file ShallowTrackClustersProducer.cc.

70  {
73  iEvent.getByToken(tracks_token_, tracks);
74 
75  int size = clustermap.size();
76 
77  //links
78  auto clusterIdx = std::make_unique<std::vector<int>>(); //link: on trk cluster --> general cluster info
79  auto onTrkClusterIdx =
80  std::make_unique<std::vector<int>>(size, -1); //link: general cluster info --> on track cluster
81  auto onTrkClustersBegin = std::make_unique<std::vector<int>>(tracks->size(), -1); //link: track --> on trk cluster
82  auto onTrkClustersEnd = std::make_unique<std::vector<int>>(tracks->size(), -1); //link: track --> on trk cluster
83  auto trackindex = std::make_unique<std::vector<int>>(); //link: on track cluster --> track
84  clusterIdx->reserve(size);
85  trackindex->reserve(size);
86 
87  auto trackmulti = std::make_unique<std::vector<unsigned int>>();
88  trackmulti->reserve(size);
89  auto localtheta = std::make_unique<std::vector<float>>();
90  localtheta->reserve(size);
91  auto localphi = std::make_unique<std::vector<float>>();
92  localphi->reserve(size);
93  auto localpitch = std::make_unique<std::vector<float>>();
94  localpitch->reserve(size);
95  auto localx = std::make_unique<std::vector<float>>();
96  localx->reserve(size);
97  auto localy = std::make_unique<std::vector<float>>();
98  localy->reserve(size);
99  auto localz = std::make_unique<std::vector<float>>();
100  localz->reserve(size);
101  auto strip = std::make_unique<std::vector<float>>();
102  strip->reserve(size);
103  auto globaltheta = std::make_unique<std::vector<float>>();
104  globaltheta->reserve(size);
105  auto globalphi = std::make_unique<std::vector<float>>();
106  globalphi->reserve(size);
107  auto globalx = std::make_unique<std::vector<float>>();
108  globalx->reserve(size);
109  auto globaly = std::make_unique<std::vector<float>>();
110  globaly->reserve(size);
111  auto globalz = std::make_unique<std::vector<float>>();
112  globalz->reserve(size);
113  auto insidistance = std::make_unique<std::vector<float>>();
114  insidistance->reserve(size);
115  auto projwidth = std::make_unique<std::vector<float>>();
116  projwidth->reserve(size);
117  auto BdotY = std::make_unique<std::vector<float>>();
118  BdotY->reserve(size);
119  auto covered = std::make_unique<std::vector<float>>();
120  covered->reserve(size);
121  auto rhlocalx = std::make_unique<std::vector<float>>();
122  rhlocalx->reserve(size);
123  auto rhlocaly = std::make_unique<std::vector<float>>();
124  rhlocaly->reserve(size);
125  auto rhlocalxerr = std::make_unique<std::vector<float>>();
126  rhlocalxerr->reserve(size);
127  auto rhlocalyerr = std::make_unique<std::vector<float>>();
128  rhlocalyerr->reserve(size);
129  auto rhglobalx = std::make_unique<std::vector<float>>();
130  rhglobalx->reserve(size);
131  auto rhglobaly = std::make_unique<std::vector<float>>();
132  rhglobaly->reserve(size);
133  auto rhglobalz = std::make_unique<std::vector<float>>();
134  rhglobalz->reserve(size);
135  auto rhstrip = std::make_unique<std::vector<float>>();
136  rhstrip->reserve(size);
137  auto rhmerr = std::make_unique<std::vector<float>>();
138  rhmerr->reserve(size);
139  auto ubstrip = std::make_unique<std::vector<float>>();
140  ubstrip->reserve(size);
141  auto ubmerr = std::make_unique<std::vector<float>>();
142  ubmerr->reserve(size);
143  auto driftx = std::make_unique<std::vector<float>>();
144  driftx->reserve(size);
145  auto drifty = std::make_unique<std::vector<float>>();
146  drifty->reserve(size);
147  auto driftz = std::make_unique<std::vector<float>>();
148  driftz->reserve(size);
149  auto globalZofunitlocalY = std::make_unique<std::vector<float>>();
150  globalZofunitlocalY->reserve(size);
151 
152  edm::ESHandle<TrackerGeometry> theTrackerGeometry = iSetup.getHandle(geomToken_);
155 
158 
160 
161  size_t ontrk_cluster_idx = 0;
162  std::map<size_t, std::vector<size_t>> mapping; //cluster idx --> on trk cluster idx (multiple)
163 
165  association != associations->end();
166  association++) {
167  const Trajectory* traj = association->key.get();
168  const reco::Track* track = association->val.get();
169  int trk_idx = shallow::findTrackIndex(tracks, track);
170  size_t trk_strt_idx = ontrk_cluster_idx;
171 
172  for (auto const& measurement : traj->measurements()) {
173  const TrajectoryStateOnSurface& tsos = measurement.updatedState();
174  const TrajectoryStateOnSurface unbiased =
175  combiner(measurement.forwardPredictedState(), measurement.backwardPredictedState());
176 
177  const TrackingRecHit* hit = measurement.recHit()->hit();
178  const SiStripRecHit1D* hit1D = dynamic_cast<const SiStripRecHit1D*>(hit);
179  const SiStripRecHit2D* hit2D = dynamic_cast<const SiStripRecHit2D*>(hit);
180  const SiStripMatchedRecHit2D* matchedhit = dynamic_cast<const SiStripMatchedRecHit2D*>(hit);
181 
182  for (unsigned h = 0; h < 2; h++) { //loop over possible Hit options (1D, 2D)
183  const SiStripCluster* cluster_ptr;
184  if (!matchedhit && h == 1)
185  continue;
186  else if (matchedhit && h == 0)
187  cluster_ptr = &matchedhit->monoCluster();
188  else if (matchedhit && h == 1)
189  cluster_ptr = &matchedhit->stereoCluster();
190  else if (hit2D)
191  cluster_ptr = (hit2D->cluster()).get();
192  else if (hit1D)
193  cluster_ptr = (hit1D->cluster()).get();
194  else
195  continue;
196 
197  shallow::CLUSTERMAP::const_iterator cluster =
198  clustermap.find(std::make_pair(hit->geographicalId().rawId(), cluster_ptr->firstStrip()));
199  if (cluster == clustermap.end())
200  throw cms::Exception("Logic Error") << "Cluster not found: this could be a configuration error" << std::endl;
201 
202  unsigned i = cluster->second;
203 
204  //find if cluster was already assigned to a previous track
205  auto already_visited = mapping.find(i);
206  int nassociations = 1;
207  if (already_visited != mapping.end()) {
208  nassociations += already_visited->second.size();
209  for (size_t idx : already_visited->second) {
210  trackmulti->at(idx)++;
211  }
212  already_visited->second.push_back(ontrk_cluster_idx);
213  } else { //otherwise store this
214  std::vector<size_t> single = {ontrk_cluster_idx};
215  mapping.insert(std::make_pair(i, single));
216  }
217 
218  const StripGeomDetUnit* theStripDet =
219  dynamic_cast<const StripGeomDetUnit*>(theTrackerGeometry->idToDet(hit->geographicalId()));
221 
222  if (nassociations == 1)
223  onTrkClusterIdx->at(i) = ontrk_cluster_idx; //link: general cluster info --> on track cluster
224  clusterIdx->push_back(i); //link: on trk cluster --> general cluster info
225  trackmulti->push_back(nassociations);
226  trackindex->push_back(trk_idx);
227  localtheta->push_back((theStripDet->toLocal(tsos.globalDirection())).theta());
228  localphi->push_back((theStripDet->toLocal(tsos.globalDirection())).phi());
229  localpitch->push_back(
230  (theStripDet->specificTopology()).localPitch(theStripDet->toLocal(tsos.globalPosition())));
231  localx->push_back((theStripDet->toLocal(tsos.globalPosition())).x());
232  localy->push_back((theStripDet->toLocal(tsos.globalPosition())).y());
233  localz->push_back((theStripDet->toLocal(tsos.globalPosition())).z());
234  strip->push_back((theStripDet->specificTopology()).strip(theStripDet->toLocal(tsos.globalPosition())));
235  globaltheta->push_back(tsos.globalDirection().theta());
236  globalphi->push_back(tsos.globalDirection().phi());
237  globalx->push_back(tsos.globalPosition().x());
238  globaly->push_back(tsos.globalPosition().y());
239  globalz->push_back(tsos.globalPosition().z());
240  insidistance->push_back(1. / fabs(cos(localtheta->at(ontrk_cluster_idx))));
241  projwidth->push_back(tan(localtheta->at(ontrk_cluster_idx)) * cos(localphi->at(ontrk_cluster_idx)));
242  BdotY->push_back((theStripDet->surface()).toLocal(magfield->inTesla(theStripDet->surface().position())).y());
243  covered->push_back(drift.z() / localpitch->at(ontrk_cluster_idx) *
244  fabs(projwidth->at(ontrk_cluster_idx) - drift.x() / drift.z()));
245  rhlocalx->push_back(hit->localPosition().x());
246  rhlocaly->push_back(hit->localPosition().y());
247  rhlocalxerr->push_back(sqrt(hit->localPositionError().xx()));
248  rhlocalyerr->push_back(sqrt(hit->localPositionError().yy()));
249  rhglobalx->push_back(theStripDet->toGlobal(hit->localPosition()).x());
250  rhglobaly->push_back(theStripDet->toGlobal(hit->localPosition()).y());
251  rhglobalz->push_back(theStripDet->toGlobal(hit->localPosition()).z());
252  rhstrip->push_back(theStripDet->specificTopology().strip(hit->localPosition()));
253  rhmerr->push_back(sqrt(
254  theStripDet->specificTopology().measurementError(hit->localPosition(), hit->localPositionError()).uu()));
255  ubstrip->push_back(theStripDet->specificTopology().strip(unbiased.localPosition()));
256  ubmerr->push_back(sqrt(theStripDet->specificTopology()
257  .measurementError(unbiased.localPosition(), unbiased.localError().positionError())
258  .uu()));
259  driftx->push_back(drift.x());
260  drifty->push_back(drift.y());
261  driftz->push_back(drift.z());
262  globalZofunitlocalY->push_back((theStripDet->toGlobal(LocalVector(0, 1, 0))).z());
263 
264  ontrk_cluster_idx++;
265  } //for(unsigned h=0; h<2; h++) { //loop over possible Hit options (1D, 2D)
266  } //for(auto const& measurement : traj->measurements() )
267 
268  onTrkClustersBegin->at(trk_idx) = trk_strt_idx;
269  onTrkClustersEnd->at(trk_idx) = ontrk_cluster_idx;
270 
271  } //for(TrajTrackAssociationCollection::const_iterator association = associations->begin();
272 
273  iEvent.put(std::move(clusterIdx), Prefix + "clusterIdx" + Suffix);
274  iEvent.put(std::move(onTrkClusterIdx), Prefix + "onTrkClusterIdx" + Suffix);
275  iEvent.put(std::move(onTrkClustersBegin), Prefix + "onTrkClustersBegin" + Suffix);
276  iEvent.put(std::move(onTrkClustersEnd), Prefix + "onTrkClustersEnd" + Suffix);
277  iEvent.put(std::move(trackindex), Prefix + "trackindex" + Suffix);
278 
279  iEvent.put(std::move(trackmulti), Prefix + "trackmulti" + Suffix);
280  iEvent.put(std::move(localtheta), Prefix + "localtheta" + Suffix);
281  iEvent.put(std::move(localphi), Prefix + "localphi" + Suffix);
282  iEvent.put(std::move(localpitch), Prefix + "localpitch" + Suffix);
283  iEvent.put(std::move(localx), Prefix + "localx" + Suffix);
284  iEvent.put(std::move(localy), Prefix + "localy" + Suffix);
285  iEvent.put(std::move(localz), Prefix + "localz" + Suffix);
286  iEvent.put(std::move(strip), Prefix + "strip" + Suffix);
287  iEvent.put(std::move(globaltheta), Prefix + "globaltheta" + Suffix);
288  iEvent.put(std::move(globalphi), Prefix + "globalphi" + Suffix);
289  iEvent.put(std::move(globalx), Prefix + "globalx" + Suffix);
290  iEvent.put(std::move(globaly), Prefix + "globaly" + Suffix);
291  iEvent.put(std::move(globalz), Prefix + "globalz" + Suffix);
292  iEvent.put(std::move(insidistance), Prefix + "insidistance" + Suffix);
293  iEvent.put(std::move(covered), Prefix + "covered" + Suffix);
294  iEvent.put(std::move(projwidth), Prefix + "projwidth" + Suffix);
295  iEvent.put(std::move(BdotY), Prefix + "BdotY" + Suffix);
296  iEvent.put(std::move(rhlocalx), Prefix + "rhlocalx" + Suffix);
297  iEvent.put(std::move(rhlocaly), Prefix + "rhlocaly" + Suffix);
298  iEvent.put(std::move(rhlocalxerr), Prefix + "rhlocalxerr" + Suffix);
299  iEvent.put(std::move(rhlocalyerr), Prefix + "rhlocalyerr" + Suffix);
300  iEvent.put(std::move(rhglobalx), Prefix + "rhglobalx" + Suffix);
301  iEvent.put(std::move(rhglobaly), Prefix + "rhglobaly" + Suffix);
302  iEvent.put(std::move(rhglobalz), Prefix + "rhglobalz" + Suffix);
303  iEvent.put(std::move(rhstrip), Prefix + "rhstrip" + Suffix);
304  iEvent.put(std::move(rhmerr), Prefix + "rhmerr" + Suffix);
305  iEvent.put(std::move(ubstrip), Prefix + "ubstrip" + Suffix);
306  iEvent.put(std::move(ubmerr), Prefix + "ubmerr" + Suffix);
307  iEvent.put(std::move(driftx), Prefix + "driftx" + Suffix);
308  iEvent.put(std::move(drifty), Prefix + "drifty" + Suffix);
309  iEvent.put(std::move(driftz), Prefix + "driftz" + Suffix);
310  iEvent.put(std::move(globalZofunitlocalY), Prefix + "globalZofunitlocalY" + Suffix);
311 }

References association_token_, genericTrackCandidates_cff::associations, SiStripRecHit1D::cluster(), SiStripRecHit2D::cluster(), clusters_token_, heavyFlavorValidationHarvestingSequence_cff::combiner, edm::AssociationMap< edm::OneToOne< std::vector< Trajectory >, reco::TrackCollection, unsigned short > >::const_iterator, funct::cos(), shallow::drift(), shallow::findTrackIndex(), SiStripCluster::firstStrip(), geomToken_, get, edm::EventSetup::getHandle(), TrajectoryStateOnSurface::globalDirection(), TrajectoryStateOnSurface::globalPosition(), mps_fire::i, TrackerGeometry::idToDet(), heavyIonCSV_trainingSettings::idx, iEvent, laToken_, TrajectoryStateOnSurface::localError(), TrajectoryStateOnSurface::localPosition(), volumeBasedMagneticField_160812_cfi::magfield, magFieldToken_, shallow::make_cluster_map(), taus_updatedMVAIds_cff::mapping, Topology::measurementError(), Trajectory::measurements(), SiStripMatchedRecHit2D::monoCluster(), eostools::move(), PV3DBase< T, PVType, FrameType >::phi(), GloballyPositioned< T >::position(), LocalTrajectoryError::positionError(), Prefix, trackerHitRTTI::single, findQualityFiles::size, StripGeomDetUnit::specificTopology(), mathSSE::sqrt(), SiStripMatchedRecHit2D::stereoCluster(), digitizers_cfi::strip, StripTopology::strip(), Suffix, GeomDet::surface(), funct::tan(), PV3DBase< T, PVType, FrameType >::theta(), GeomDet::toGlobal(), GeomDet::toLocal(), toLocal(), HLT_FULL_cff::track, PDWG_EXOHSCP_cff::tracks, tracks_token_, x, PV3DBase< T, PVType, FrameType >::x(), hit::x, y, PV3DBase< T, PVType, FrameType >::y(), hit::y, z, and PV3DBase< T, PVType, FrameType >::z().

Member Data Documentation

◆ association_token_

const edm::EDGetTokenT<TrajTrackAssociationCollection> ShallowTrackClustersProducer::association_token_
private

Definition at line 25 of file ShallowTrackClustersProducer.h.

Referenced by produce().

◆ clusters_token_

const edm::EDGetTokenT<edmNew::DetSetVector<SiStripCluster> > ShallowTrackClustersProducer::clusters_token_
private

Definition at line 26 of file ShallowTrackClustersProducer.h.

Referenced by produce().

◆ geomToken_

const edm::ESGetToken<TrackerGeometry, TrackerDigiGeometryRecord> ShallowTrackClustersProducer::geomToken_
private

Definition at line 27 of file ShallowTrackClustersProducer.h.

Referenced by produce().

◆ laToken_

const edm::ESGetToken<SiStripLorentzAngle, SiStripLorentzAngleDepRcd> ShallowTrackClustersProducer::laToken_
private

Definition at line 29 of file ShallowTrackClustersProducer.h.

Referenced by produce().

◆ magFieldToken_

const edm::ESGetToken<MagneticField, IdealMagneticFieldRecord> ShallowTrackClustersProducer::magFieldToken_
private

Definition at line 28 of file ShallowTrackClustersProducer.h.

Referenced by produce().

◆ Prefix

std::string ShallowTrackClustersProducer::Prefix
private

Definition at line 31 of file ShallowTrackClustersProducer.h.

Referenced by produce(), and ShallowTrackClustersProducer().

◆ Suffix

std::string ShallowTrackClustersProducer::Suffix
private

Definition at line 30 of file ShallowTrackClustersProducer.h.

Referenced by produce(), and ShallowTrackClustersProducer().

◆ tracks_token_

const edm::EDGetTokenT<edm::View<reco::Track> > ShallowTrackClustersProducer::tracks_token_
private

Definition at line 24 of file ShallowTrackClustersProducer.h.

Referenced by produce().

Vector3DBase< float, LocalTag >
TrackerGeometry::idToDet
const TrackerGeomDet * idToDet(DetId) const override
Definition: TrackerGeometry.cc:193
TrajectoryStateOnSurface::globalDirection
GlobalVector globalDirection() const
Definition: TrajectoryStateOnSurface.h:67
genericTrackCandidates_cff.associations
associations
Definition: genericTrackCandidates_cff.py:45
DDAxes::y
PDWG_EXOHSCP_cff.tracks
tracks
Definition: PDWG_EXOHSCP_cff.py:28
SiStripRecHit2D::cluster
ClusterRef cluster() const
Definition: SiStripRecHit2D.h:22
mps_fire.i
i
Definition: mps_fire.py:428
ShallowTrackClustersProducer::association_token_
const edm::EDGetTokenT< TrajTrackAssociationCollection > association_token_
Definition: ShallowTrackClustersProducer.h:25
HLT_FULL_cff.track
track
Definition: HLT_FULL_cff.py:11713
hit::y
double y
Definition: SiStripHitEffFromCalibTree.cc:90
SiStripMatchedRecHit2D::stereoCluster
SiStripCluster const & stereoCluster() const
Definition: SiStripMatchedRecHit2D.h:40
LocalTrajectoryError::positionError
LocalError positionError() const
Definition: LocalTrajectoryError.h:81
PV3DBase::x
T x() const
Definition: PV3DBase.h:59
digitizers_cfi.strip
strip
Definition: digitizers_cfi.py:19
PV3DBase::theta
Geom::Theta< T > theta() const
Definition: PV3DBase.h:72
TrajectoryStateOnSurface::globalPosition
GlobalPoint globalPosition() const
Definition: TrajectoryStateOnSurface.h:65
hgcal::association
std::tuple< layerClusterToCaloParticle, caloParticleToLayerCluster > association
Definition: LayerClusterAssociatorByEnergyScoreImpl.h:44
ShallowTrackClustersProducer::laToken_
const edm::ESGetToken< SiStripLorentzAngle, SiStripLorentzAngleDepRcd > laToken_
Definition: ShallowTrackClustersProducer.h:29
SiStripRecHit2D
Definition: SiStripRecHit2D.h:7
DDAxes::x
edm::Handle
Definition: AssociativeIterator.h:50
heavyIonCSV_trainingSettings.idx
idx
Definition: heavyIonCSV_trainingSettings.py:5
SiStripCluster::firstStrip
uint16_t firstStrip() const
Definition: SiStripCluster.h:47
hit::x
double x
Definition: SiStripHitEffFromCalibTree.cc:89
PV3DBase::z
T z() const
Definition: PV3DBase.h:61
GeomDet::surface
const Plane & surface() const
The nominal surface of the GeomDet.
Definition: GeomDet.h:37
TrajectoryStateOnSurface
Definition: TrajectoryStateOnSurface.h:16
ShallowTrackClustersProducer::Suffix
std::string Suffix
Definition: ShallowTrackClustersProducer.h:30
shallow::drift
LocalVector drift(const StripGeomDetUnit *, const MagneticField &, const SiStripLorentzAngle &)
Definition: ShallowTools.cc:36
SiStripLorentzAngle
Definition: SiStripLorentzAngle.h:26
funct::cos
Cos< T >::type cos(const T &t)
Definition: Cos.h:22
mathSSE::sqrt
T sqrt(T t)
Definition: SSEVec.h:19
DDAxes::z
reco::Track
Definition: Track.h:27
edm::ESHandle< TrackerGeometry >
Topology::measurementError
virtual MeasurementError measurementError(const LocalPoint &, const LocalError &) const =0
h
GeomDet::toLocal
LocalPoint toLocal(const GlobalPoint &gp) const
Conversion to the R.F. of the GeomDet.
Definition: GeomDet.h:58
ShallowTrackClustersProducer::geomToken_
const edm::ESGetToken< TrackerGeometry, TrackerDigiGeometryRecord > geomToken_
Definition: ShallowTrackClustersProducer.h:27
StripTopology::strip
virtual float strip(const LocalPoint &) const =0
ShallowTrackClustersProducer::Prefix
std::string Prefix
Definition: ShallowTrackClustersProducer.h:31
AlCaHLTBitMon_QueryRunRegistry.string
string
Definition: AlCaHLTBitMon_QueryRunRegistry.py:256
edm::AssociationMap< edm::OneToOne< std::vector< Trajectory >, reco::TrackCollection, unsigned short > >::const_iterator
friend struct const_iterator
Definition: AssociationMap.h:274
edm::View
Definition: CaloClusterFwd.h:14
TrajectoryStateCombiner
Definition: TrajectoryStateCombiner.h:13
TrajectoryStateOnSurface::localPosition
LocalPoint localPosition() const
Definition: TrajectoryStateOnSurface.h:74
GeomDet::toGlobal
GlobalPoint toGlobal(const Local2DPoint &lp) const
Conversion to the global R.F. from the R.F. of the GeomDet.
Definition: GeomDet.h:49
trackerHitRTTI::single
Definition: trackerHitRTTI.h:10
ShallowTrackClustersProducer::clusters_token_
const edm::EDGetTokenT< edmNew::DetSetVector< SiStripCluster > > clusters_token_
Definition: ShallowTrackClustersProducer.h:26
PV3DBase::y
T y() const
Definition: PV3DBase.h:60
funct::tan
Tan< T >::type tan(const T &t)
Definition: Tan.h:22
iEvent
int iEvent
Definition: GenABIO.cc:224
edm::EventSetup::getHandle
ESHandle< T > getHandle(const ESGetToken< T, R > &iToken) const
Definition: EventSetup.h:148
SiStripRecHit1D::cluster
ClusterRef cluster() const
Definition: SiStripRecHit1D.h:18
SiStripRecHit1D
Definition: SiStripRecHit1D.h:8
get
#define get
Trajectory::measurements
DataContainer const & measurements() const
Definition: Trajectory.h:178
ShallowTrackClustersProducer::tracks_token_
const edm::EDGetTokenT< edm::View< reco::Track > > tracks_token_
Definition: ShallowTrackClustersProducer.h:24
TrackingRecHit
Definition: TrackingRecHit.h:21
GloballyPositioned::position
const PositionType & position() const
Definition: GloballyPositioned.h:36
edmNew::DetSetVector
Definition: DetSetNew.h:13
shallow::make_cluster_map
CLUSTERMAP make_cluster_map(const edm::Event &, const edm::EDGetTokenT< edmNew::DetSetVector< SiStripCluster > > &)
Definition: ShallowTools.cc:12
eostools.move
def move(src, dest)
Definition: eostools.py:511
SiStripMatchedRecHit2D
Definition: SiStripMatchedRecHit2D.h:8
Trajectory
Definition: Trajectory.h:38
SiStripMatchedRecHit2D::monoCluster
SiStripCluster const & monoCluster() const
Definition: SiStripMatchedRecHit2D.h:41
toLocal
LocalVector toLocal(const reco::Track::Vector &v, const Surface &s)
Definition: ConversionProducer.h:199
edm::ParameterSet::getParameter
T getParameter(std::string const &) const
Definition: ParameterSet.h:303
StripGeomDetUnit::specificTopology
virtual const StripTopology & specificTopology() const
Returns a reference to the strip proxy topology.
Definition: StripGeomDetUnit.cc:17
cms::Exception
Definition: Exception.h:70
heavyFlavorValidationHarvestingSequence_cff.combiner
combiner
Definition: heavyFlavorValidationHarvestingSequence_cff.py:107
TrajectoryStateOnSurface::localError
const LocalTrajectoryError & localError() const
Definition: TrajectoryStateOnSurface.h:77
SiStripCluster
Definition: SiStripCluster.h:9
volumeBasedMagneticField_160812_cfi.magfield
magfield
Definition: volumeBasedMagneticField_160812_cfi.py:11
taus_updatedMVAIds_cff.mapping
mapping
Definition: taus_updatedMVAIds_cff.py:29
edm::InputTag
Definition: InputTag.h:15
ShallowTrackClustersProducer::magFieldToken_
const edm::ESGetToken< MagneticField, IdealMagneticFieldRecord > magFieldToken_
Definition: ShallowTrackClustersProducer.h:28
PV3DBase::phi
Geom::Phi< T > phi() const
Definition: PV3DBase.h:66
shallow::CLUSTERMAP
std::map< std::pair< uint32_t, uint16_t >, unsigned int > CLUSTERMAP
Definition: ShallowTools.h:21
hit
Definition: SiStripHitEffFromCalibTree.cc:88
findQualityFiles.size
size
Write out results.
Definition: findQualityFiles.py:443
StripGeomDetUnit
Definition: StripGeomDetUnit.h:15
shallow::findTrackIndex
int findTrackIndex(const edm::Handle< edm::View< reco::Track > > &h, const reco::Track *t)
Definition: ShallowTools.cc:25