CMS 3D CMS Logo

PixelTrackProducer.cc
Go to the documentation of this file.
1 #include "PixelTrackProducer.h"
2 
10 
16 
19 
20 #include <vector>
21 
22 using namespace pixeltrackfitting;
23 using edm::ParameterSet;
24 
25 PixelTrackProducer::PixelTrackProducer(const ParameterSet& cfg) : theReconstruction(cfg, consumesCollector()) {
26  edm::LogInfo("PixelTrackProducer") << " construction...";
27  produces<reco::TrackCollection>();
28  produces<TrackingRecHitCollection>();
29  produces<reco::TrackExtraCollection>();
30 }
31 
33 
36 
37  desc.add<std::string>("passLabel", "pixelTracks"); // What is this? It is not used anywhere in this code.
39 
40  descriptions.add("pixelTracks", desc);
41 }
42 
44  LogDebug("PixelTrackProducer, produce") << "event# :" << ev.id();
45 
48 
50  es.get<TrackerTopologyRcd>().get(httopo);
51 
52  // store tracks
53  store(ev, tracks, *httopo);
54 }
55 
56 void PixelTrackProducer::store(edm::Event& ev, const TracksWithTTRHs& tracksWithHits, const TrackerTopology& ttopo) {
57  auto tracks = std::make_unique<reco::TrackCollection>();
58  auto recHits = std::make_unique<TrackingRecHitCollection>();
59  auto trackExtras = std::make_unique<reco::TrackExtraCollection>();
60 
61  int cc = 0, nTracks = tracksWithHits.size();
62 
63  for (int i = 0; i < nTracks; i++) {
64  reco::Track* track = tracksWithHits.at(i).first;
65  const SeedingHitSet& hits = tracksWithHits.at(i).second;
66 
67  for (unsigned int k = 0; k < hits.size(); k++) {
68  TrackingRecHit* hit = hits[k]->hit()->clone();
69 
70  track->appendHitPattern(*hit, ttopo);
71  recHits->push_back(hit);
72  }
73  tracks->push_back(*track);
74  delete track;
75  }
76 
77  LogDebug("TrackProducer") << "put the collection of TrackingRecHit in the event"
78  << "\n";
80 
82  for (int k = 0; k < nTracks; k++) {
83  reco::TrackExtra theTrackExtra{};
84 
85  //fill the TrackExtra with TrackingRecHitRef
86  unsigned int nHits = tracks->at(k).numberOfValidHits();
87  theTrackExtra.setHits(hitCollProd, cc, nHits);
88  cc += nHits;
89  AlgebraicVector5 v = AlgebraicVector5(0, 0, 0, 0, 0);
91  reco::TrackExtra::Chi2sFive chi2s(nHits, 0);
92  theTrackExtra.setTrajParams(std::move(trajParams), std::move(chi2s));
93  trackExtras->push_back(theTrackExtra);
94  }
95 
96  LogDebug("TrackProducer") << "put the collection of TrackExtra in the event"
97  << "\n";
99 
100  for (int k = 0; k < nTracks; k++) {
101  const reco::TrackExtraRef theTrackExtraRef(ohTE, k);
102  (tracks->at(k)).setExtra(theTrackExtraRef);
103  }
104 
105  ev.put(std::move(tracks));
106 }
ConfigurationDescriptions.h
edm::RefProd< TrackingRecHitCollection >
TrackExtra.h
nTracks
const unsigned int nTracks(const reco::Vertex &sv)
Definition: TemplatedVertexArbitrator.h:44
PDWG_EXOHSCP_cff.tracks
tracks
Definition: PDWG_EXOHSCP_cff.py:28
mps_fire.i
i
Definition: mps_fire.py:355
edm::ParameterSetDescription::add
ParameterDescriptionBase * add(U const &iLabel, T const &value)
Definition: ParameterSetDescription.h:95
PixelTrackProducer::produce
void produce(edm::Event &ev, const edm::EventSetup &es) override
Definition: PixelTrackProducer.cc:43
MessageLogger.h
hfClusterShapes_cfi.hits
hits
Definition: hfClusterShapes_cfi.py:5
ESHandle.h
PixelTrackProducer::store
void store(edm::Event &ev, const pixeltrackfitting::TracksWithTTRHs &selectedTracks, const TrackerTopology &ttopo)
Definition: PixelTrackProducer.cc:56
SeedingHitSet
Definition: SeedingHitSet.h:6
TrackerTopology
Definition: TrackerTopology.h:16
edm::LogInfo
Definition: MessageLogger.h:254
edm::ParameterSetDescription
Definition: ParameterSetDescription.h:52
PixelTrackReconstruction::fillDescriptions
static void fillDescriptions(edm::ParameterSetDescription &desc)
Definition: PixelTrackReconstruction.cc:35
findQualityFiles.v
v
Definition: findQualityFiles.py:179
PixelTrackProducer::fillDescriptions
static void fillDescriptions(edm::ConfigurationDescriptions &descriptions)
Definition: PixelTrackProducer.cc:34
PixelTrackProducer::theReconstruction
PixelTrackReconstruction theReconstruction
Definition: PixelTrackProducer.h:28
edm::Ref< TrackExtraCollection >
cc
LocalTrajectoryParameters
Definition: LocalTrajectoryParameters.h:25
PixelTrackReconstruction::run
void run(pixeltrackfitting::TracksWithTTRHs &tah, edm::Event &ev, const edm::EventSetup &es)
Definition: PixelTrackReconstruction.cc:42
reco::TrackExtra
Definition: TrackExtra.h:26
PixelTrackProducer.h
LocalTrajectoryParameters.h
TrackerTopology.h
TrackerTopologyRcd.h
Track.h
edm::EventSetup::get
T get() const
Definition: EventSetup.h:73
TrackFwd.h
PixelTrackProducer::~PixelTrackProducer
~PixelTrackProducer() override
Definition: PixelTrackProducer.cc:32
edm::ConfigurationDescriptions::add
void add(std::string const &label, ParameterSetDescription const &psetDescription)
Definition: ConfigurationDescriptions.cc:57
OrphanHandle.h
reco::Track
Definition: Track.h:27
edm::ESHandle< TrackerTopology >
pixeltrackfitting
Definition: TracksWithHits.h:10
dqmdumpme.k
k
Definition: dqmdumpme.py:60
ParameterSetDescription.h
edm::ConfigurationDescriptions
Definition: ConfigurationDescriptions.h:28
AlCaHLTBitMon_QueryRunRegistry.string
string
Definition: AlCaHLTBitMon_QueryRunRegistry.py:256
FastTrackerRecHitMaskProducer_cfi.recHits
recHits
Definition: FastTrackerRecHitMaskProducer_cfi.py:8
LogDebug
#define LogDebug(id)
Definition: MessageLogger.h:670
edm::ParameterSet
Definition: ParameterSet.h:36
Event.h
edm::EventSetup
Definition: EventSetup.h:57
pixeltrackfitting::TracksWithTTRHs
std::vector< TrackWithTTRHs > TracksWithTTRHs
Definition: TracksWithHits.h:14
AlgebraicVector5
ROOT::Math::SVector< double, 5 > AlgebraicVector5
Definition: AlgebraicROOTObjects.h:14
get
#define get
looper.cfg
cfg
Definition: looper.py:297
TrackingRecHit
Definition: TrackingRecHit.h:21
eostools.move
def move(src, dest)
Definition: eostools.py:511
edm::OrphanHandle
Definition: EDProductfwd.h:39
reco::TrackExtraBase::Chi2sFive
std::vector< unsigned char > Chi2sFive
Definition: TrackExtraBase.h:25
ev
bool ev
Definition: Hydjet2Hadronizer.cc:95
EventSetup.h
PixelTrackProducer::PixelTrackProducer
PixelTrackProducer(const edm::ParameterSet &conf)
Definition: PixelTrackProducer.cc:25
HLT_2018_cff.track
track
Definition: HLT_2018_cff.py:10352
TrackerTopologyRcd
Definition: TrackerTopologyRcd.h:10
ParameterSet.h
edm::Event
Definition: Event.h:73
reco::TrackExtraBase::TrajParams
std::vector< LocalTrajectoryParameters > TrajParams
Definition: TrackExtraBase.h:24
hit
Definition: SiStripHitEffFromCalibTree.cc:88