CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
TrackListCombiner.cc
Go to the documentation of this file.
1 #include "TrackListCombiner.h"
2 
6 
8 
12 
15 
16 using namespace std;
17 
18 /*****************************************************************************/
20 {
21  trackProducers = ps.getParameter<vector<string> >("trackProducers");
22 
23  produces<reco::TrackCollection>();
24  produces<reco::TrackExtraCollection>();
25  produces<TrackingRecHitCollection>();
26  produces<vector<Trajectory> >();
27  produces<TrajTrackAssociationCollection>();
28 }
29 
30 /*****************************************************************************/
32 {
33 }
34 
35 /*****************************************************************************/
37 {
38  auto_ptr<reco::TrackCollection> recoTracks
40  auto_ptr<reco::TrackExtraCollection> recoTrackExtras
42  auto_ptr<TrackingRecHitCollection> recoHits
44  auto_ptr<vector<Trajectory> > recoTrajectories
45  (new vector<Trajectory>);
46  auto_ptr<TrajTrackAssociationCollection> recoTrajTrackMap
48 
49  LogTrace("MinBiasTracking")
50  << "[TrackListCombiner]";
51 
52  // Go through all track producers
53  int i = 1;
54  for(vector<string>::iterator trackProducer = trackProducers.begin();
55  trackProducer!= trackProducers.end();
56  trackProducer++, i++)
57  {
59  switch(i)
60  {
61  case 1: algo = reco::TrackBase::iter1; break;
62  case 2: algo = reco::TrackBase::iter2; break;
63  case 3: algo = reco::TrackBase::iter3; break;
64  default: algo = reco::TrackBase::undefAlgorithm;
65  }
66 
67  edm::Handle<vector<Trajectory> > theTrajectoryCollection;
69 
70  ev.getByLabel(*trackProducer, theTrajectoryCollection);
71  ev.getByLabel(*trackProducer, theAssoMap);
72 
73  LogTrace("MinBiasTracking")
74  << " [TrackListCombiner] " << *trackProducer
75  << " : " << theAssoMap->size();
76 
77 
78  // The track collection iterators
81  anAssociation = theAssoMap->begin();
82  lastAssociation = theAssoMap->end();
83 
84  // Build the map of correspondance between reco tracks and sim tracks
85  for ( ; anAssociation != lastAssociation; ++anAssociation )
86  {
87  edm::Ref<vector<Trajectory> > aTrajectoryRef = anAssociation->key;
88  reco::TrackRef aTrackRef = anAssociation->val;
89 
90  // A copy of the track
91  reco::Track aRecoTrack(*aTrackRef);
92 
93  // Set algorithm
94  aRecoTrack.setAlgorithm(algo);
95 
96  recoTracks->push_back(aRecoTrack);
97 
98  // A copy of the hits
99  unsigned nh = aRecoTrack.recHitsSize();
100  for(unsigned ih=0; ih<nh; ++ih)
101  {
102  TrackingRecHit *hit = aRecoTrack.recHit(ih)->clone();
103  recoHits->push_back(hit);
104  }
105 
106  // A copy of the trajectories
107  recoTrajectories->push_back(*aTrajectoryRef);
108 
109  }
110  }
111 
112  LogTrace("MinBiasTracking")
113  << " [TrackListCombiner] allTracks : " << recoTracks->size()
114  << "|" << recoTrajectories->size();
115 
116  // Save the tracking recHits
117  edm::OrphanHandle<TrackingRecHitCollection> theRecoHits = ev.put(recoHits);
118 
119  // Create the track extras and add the references to the rechits
120  unsigned hits = 0;
121  unsigned nTracks = recoTracks->size();
122  recoTrackExtras->reserve(nTracks); // To save some time at push_back
123  for(unsigned index = 0; index < nTracks; ++index )
124  {
125  reco::Track& aTrack = recoTracks->at(index);
126  reco::TrackExtra aTrackExtra(aTrack.outerPosition(),
127  aTrack.outerMomentum(),
128  aTrack.outerOk(),
129  aTrack.innerPosition(),
130  aTrack.innerMomentum(),
131  aTrack.innerOk(),
132  aTrack.outerStateCovariance(),
133  aTrack.outerDetId(),
134  aTrack.innerStateCovariance(),
135  aTrack.innerDetId(),
136  aTrack.seedDirection(),
137  aTrack.seedRef());
138 
139  unsigned nHits = aTrack.recHitsSize();
140  for ( unsigned int ih=0; ih<nHits; ++ih)
141  aTrackExtra.add(TrackingRecHitRef(theRecoHits,hits++));
142  recoTrackExtras->push_back(aTrackExtra);
143  }
144 
145  // Save the track extras
147  ev.put(recoTrackExtras);
148 
149  // Add the reference to the track extra in the tracks
150  for(unsigned index = 0; index<nTracks; ++index)
151  {
152  const reco::TrackExtraRef theTrackExtraRef(theRecoTrackExtras,index);
153  (recoTracks->at(index)).setExtra(theTrackExtraRef);
154  }
155 
156  // Save the tracks
157  edm::OrphanHandle<reco::TrackCollection> theRecoTracks = ev.put(recoTracks);
158 
159  // Save the trajectories
160  edm::OrphanHandle<vector<Trajectory> > theRecoTrajectories =
161  ev.put(recoTrajectories);
162 
163  // Create and set the trajectory/track association map
164  for(unsigned index = 0; index<nTracks; ++index)
165  {
166  edm::Ref<vector<Trajectory> > trajRef( theRecoTrajectories, index );
167  edm::Ref<reco::TrackCollection> tkRef( theRecoTracks, index );
168  recoTrajTrackMap->insert(trajRef,tkRef);
169  }
170 
171  // Save the association map
172  ev.put(recoTrajTrackMap);
173 }
174 
T getParameter(std::string const &) const
int i
Definition: DBlmapReader.cc:9
size_t recHitsSize() const
Get number of RecHits. (Warning, this includes invalid hits, which are not physical hits)...
Definition: Track.h:69
std::vector< Track > TrackCollection
collection of Tracks
Definition: TrackFwd.h:10
bool innerOk() const
return true if the innermost hit is valid
Definition: Track.h:40
const math::XYZPoint & outerPosition() const
position of the outermost hit
Definition: Track.h:47
TrackAlgorithm
track algorithm
Definition: TrackBase.h:80
const math::XYZPoint & innerPosition() const
position of the innermost hit
Definition: Track.h:42
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Event.h:116
CovarianceMatrix outerStateCovariance() const
outermost trajectory state curvilinear errors
Definition: Track.h:51
unsigned int outerDetId() const
DetId of the detector on which surface the outermost state is located.
Definition: Track.h:59
edm::AssociationMap< edm::OneToOne< std::vector< Trajectory >, reco::TrackCollection, unsigned short > > TrajTrackAssociationCollection
bool getByLabel(InputTag const &tag, Handle< PROD > &result) const
Definition: Event.h:390
#define LogTrace(id)
virtual void produce(edm::Event &ev, const edm::EventSetup &es)
std::vector< TrackExtra > TrackExtraCollection
collection of TrackExtra objects
Definition: TrackExtraFwd.h:9
edm::RefToBase< TrajectorySeed > seedRef() const
Definition: Track.h:112
const math::XYZVector & outerMomentum() const
momentum vector at the outermost hit position
Definition: Track.h:49
bool outerOk() const
return true if the outermost hit is valid
Definition: Track.h:38
CovarianceMatrix innerStateCovariance() const
innermost trajectory state curvilinear errors
Definition: Track.h:53
key_type key() const
Accessor for product key.
Definition: Ref.h:266
TrackListCombiner(const edm::ParameterSet &ps)
void setAlgorithm(const TrackAlgorithm a, bool set=true)
position index
Definition: TrackBase.h:271
const math::XYZVector & innerMomentum() const
momentum vector at the innermost hit position
Definition: Track.h:45
TrackingRecHitRef recHit(size_t i) const
Get i-th hit on the track.
Definition: Track.h:67
PropagationDirection seedDirection() const
direction of how the hits were sorted in the original seed
Definition: Track.h:105
unsigned int innerDetId() const
DetId of the detector on which surface the innermost state is located.
Definition: Track.h:61