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 
26  : theReconstruction(cfg, consumesCollector())
27 {
28  edm::LogInfo("PixelTrackProducer")<<" construction...";
29  produces<reco::TrackCollection>();
30  produces<TrackingRecHitCollection>();
31  produces<reco::TrackExtraCollection>();
32 }
33 
35 
38 
39  desc.add<std::string>("passLabel", "pixelTracks"); // What is this? It is not used anywhere in this code.
41 
42  descriptions.add("pixelTracks", desc);
43 }
44 
46 {
47  LogDebug("PixelTrackProducer, produce")<<"event# :"<<ev.id();
48 
50  theReconstruction.run(tracks,ev,es);
51 
53  es.get<TrackerTopologyRcd>().get(httopo);
54 
55  // store tracks
56  store(ev, tracks, *httopo);
57 }
58 
59 void PixelTrackProducer::store(edm::Event& ev, const TracksWithTTRHs& tracksWithHits, const TrackerTopology& ttopo)
60 {
61  auto tracks = std::make_unique<reco::TrackCollection>();
62  auto recHits = std::make_unique<TrackingRecHitCollection>();
63  auto trackExtras = std::make_unique<reco::TrackExtraCollection>();
64 
65  int cc = 0, nTracks = tracksWithHits.size();
66 
67  for (int i = 0; i < nTracks; i++)
68  {
69  reco::Track* track = tracksWithHits.at(i).first;
70  const SeedingHitSet& hits = tracksWithHits.at(i).second;
71 
72  for (unsigned int k = 0; k < hits.size(); k++)
73  {
74  TrackingRecHit *hit = hits[k]->hit()->clone();
75 
76  track->appendHitPattern(*hit, ttopo);
77  recHits->push_back(hit);
78  }
79  tracks->push_back(*track);
80  delete track;
81 
82  }
83 
84  LogDebug("TrackProducer") << "put the collection of TrackingRecHit in the event" << "\n";
86 
88  for (int k = 0; k < nTracks; k++)
89  {
90  reco::TrackExtra theTrackExtra{};
91 
92  //fill the TrackExtra with TrackingRecHitRef
93  unsigned int nHits = tracks->at(k).numberOfValidHits();
94  theTrackExtra.setHits(hitCollProd, cc, nHits);
95  cc +=nHits;
96  AlgebraicVector5 v = AlgebraicVector5(0,0,0,0,0);
98  reco::TrackExtra::Chi2sFive chi2s(nHits,0);
99  theTrackExtra.setTrajParams(std::move(trajParams),std::move(chi2s));
100  trackExtras->push_back(theTrackExtra);
101  }
102 
103  LogDebug("TrackProducer") << "put the collection of TrackExtra in the event" << "\n";
105 
106  for (int k = 0; k < nTracks; k++)
107  {
108  const reco::TrackExtraRef theTrackExtraRef(ohTE,k);
109  (tracks->at(k)).setExtra(theTrackExtraRef);
110  }
111 
112  ev.put(std::move(tracks));
113 
114 }
#define LogDebug(id)
const unsigned int nTracks(const reco::Vertex &sv)
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
Definition: Event.h:122
std::vector< unsigned char > Chi2sFive
bool ev
std::vector< TrackWithTTRHs > TracksWithTTRHs
std::vector< LocalTrajectoryParameters > TrajParams
virtual void produce(edm::Event &ev, const edm::EventSetup &es) override
ParameterDescriptionBase * add(U const &iLabel, T const &value)
void run(pixeltrackfitting::TracksWithTTRHs &tah, edm::Event &ev, const edm::EventSetup &es)
int k[5][pyjets_maxn]
static void fillDescriptions(edm::ConfigurationDescriptions &descriptions)
ROOT::Math::SVector< double, 5 > AlgebraicVector5
const T & get() const
Definition: EventSetup.h:56
void add(std::string const &label, ParameterSetDescription const &psetDescription)
bool appendHitPattern(const TrackingRecHit &hit, const TrackerTopology &ttopo)
append a single hit to the HitPattern
Definition: TrackBase.h:455
PixelTrackReconstruction theReconstruction
edm::EventID id() const
Definition: EventBase.h:60
unsigned int size() const
Definition: SeedingHitSet.h:46
void store(edm::Event &ev, const pixeltrackfitting::TracksWithTTRHs &selectedTracks, const TrackerTopology &ttopo)
static void fillDescriptions(edm::ParameterSetDescription &desc)
def move(src, dest)
Definition: eostools.py:510
PixelTrackProducer(const edm::ParameterSet &conf)