CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
SeedToTrackProducer.cc
Go to the documentation of this file.
1 // -*- C++ -*-
2 //
3 // Package: SeedToTrackProducer
4 // Class: SeedToTrackProducer
5 //
13 //
14 // Original Author: Hugues Brun
15 // Created: Tue, 05 Nov 2013 13:42:04 GMT
16 // $Id$
17 //
18 //
19 
20 
21 
22 
23 #include "SeedToTrackProducer.h"
24 
27 
28 
29 //
30 // class declaration
31 //
32 
33 
34 
35 //
36 // constants, enums and typedefs
37 //
38 
39 
40 //
41 // static data member definitions
42 //
43 
44 //
45 // constructors and destructor
46 //
48 {
49 
50  L2seedsTagT_ = consumes<TrajectorySeedCollection>(iConfig.getParameter<edm::InputTag>("L2seedsCollection"));
51  L2seedsTagS_ = consumes<edm::View<TrajectorySeed> >(iConfig.getParameter<edm::InputTag>("L2seedsCollection"));
52 
53 
54 
55 
56  produces<reco::TrackCollection>();
57  produces<reco::TrackExtraCollection>();
58  produces<TrackingRecHitCollection>();
59 
60 
61 }
62 
63 
65 {
66 
67  // do anything here that needs to be done at desctruction time
68  // (e.g. close files, deallocate resources etc.)
69 
70 }
71 
72 
73 //
74 // member functions
75 //
76 
77 // ------------ method called to produce the data ------------
78 void
80 {
81  using namespace edm;
82  using namespace std;
83 
84  std::auto_ptr<reco::TrackCollection> selectedTracks(new reco::TrackCollection);
85  std::auto_ptr<reco::TrackExtraCollection> selectedTrackExtras( new reco::TrackExtraCollection() );
86  std::auto_ptr<TrackingRecHitCollection> selectedTrackHits( new TrackingRecHitCollection() );
87 
91 
94 
95  // magnetic fied and detector geometry
98 
100  iSetup.get<TrackerTopologyRcd>().get(httopo);
101  const TrackerTopology& ttopo = *httopo;
102 
103  // now read the L2 seeds collection :
104  edm::Handle<TrajectorySeedCollection> L2seedsCollection;
105  iEvent.getByToken(L2seedsTagT_,L2seedsCollection);
106  const std::vector<TrajectorySeed>* L2seeds = 0;
107  if (L2seedsCollection.isValid()) L2seeds = L2seedsCollection.product();
108  else edm::LogError("SeedToTrackProducer") << "L2 seeds collection not found !! " << endl;
109 
111  iEvent.getByToken(L2seedsTagS_, seedHandle);
112 
113 
114  int countRH = 0;
115 
116  // now loop on the seeds :
117  for (unsigned int i = 0; i < L2seeds->size() ; i++){
118 
119 
120  //get the kinematic extrapolation from the seed
121  TrajectoryStateOnSurface theTrajectory = seedTransientState(L2seeds->at(i));
122  float seedEta = theTrajectory.globalMomentum().eta();
123  float seedPhi = theTrajectory.globalMomentum().phi();
124  float seedPt = theTrajectory.globalMomentum().perp();
125  CovarianceMatrix matrixSeedErr = theTrajectory.curvilinearError().matrix();
126  edm::LogVerbatim("SeedToTrackProducer") << "seedPt=" << seedPt << " seedEta=" << seedEta << " seedPhi=" << seedPhi << endl;
127  /*AlgebraicSymMatrix66 errors = theTrajectory.cartesianError().matrix();
128  double partialPterror = errors(3,3)*pow(theTrajectory.globalMomentum().x(),2) + errors(4,4)*pow(theTrajectory.globalMomentum().y(),2);
129  edm::LogVerbatim("SeedToTrackProducer") << "seedPtError=" << sqrt(partialPterror)/theTrajectory.globalMomentum().perp() << "seedPhiError=" << theTrajectory.curvilinearError().matrix()(2,2) << endl;*/
130  //fill the track in a way that its pt, phi and eta will be the same as the seed
131  math::XYZPoint initPoint(0,0,0);
132  math::XYZVector initMom(seedPt*cos(seedPhi),seedPt*sin(seedPhi),seedPt*sinh(seedEta));
133  reco::Track theTrack(1, 1, //dummy Chi2 and ndof
134  initPoint, initMom,
135  1, matrixSeedErr,
136  reco::TrackBase::TrackAlgorithm::globalMuon, reco::TrackBase::TrackQuality::tight);
137 
138  //fill the extra track with dummy information
139  math::XYZPoint dummyFinalPoint(1,1,1);
140  math::XYZVector dummyFinalMom(0,0,10);
142  CovarianceMatrix matrixExtra = ROOT::Math::SMatrixIdentity();
143  reco::TrackExtra theTrackExtra(dummyFinalPoint, dummyFinalMom, true, initPoint, initMom, true,
144  matrixSeedErr, 1,
145  matrixExtra, 2,
146  (L2seeds->at(i)).direction(), seed);
147  theTrack.setExtra( reco::TrackExtraRef( rTrackExtras, idx++ ) );
148  edm::LogVerbatim("SeedToTrackProducer") << "trackPt=" << theTrack.pt() << " trackEta=" << theTrack.eta() << " trackPhi=" << theTrack.phi() << endl;
149  edm::LogVerbatim("SeedToTrackProducer") << "trackPtError=" << theTrack.ptError() << "trackPhiError=" << theTrack.phiError() << endl;
150 
151  //fill the seed segments in the track
152  unsigned int nHitsAdded = 0;
153  for(TrajectorySeed::recHitContainer::const_iterator itRecHits=(L2seeds->at(i)).recHits().first; itRecHits!=(L2seeds->at(i)).recHits().second; ++itRecHits, ++countRH) {
154  TrackingRecHit* hit = (itRecHits)->clone();
155  theTrack.appendHitPattern(*hit, ttopo);
156  selectedTrackHits->push_back(hit);
157  nHitsAdded++;
158  }
159  theTrackExtra.setHits( rHits, hidx, nHitsAdded );
160  hidx += nHitsAdded;
161  selectedTracks->push_back(theTrack);
162  selectedTrackExtras->push_back(theTrackExtra);
163 
164  }
165  iEvent.put(selectedTracks);
166  iEvent.put(selectedTrackExtras);
167  iEvent.put(selectedTrackHits);
168 
169 }
170 
172 
173  PTrajectoryStateOnDet tmpTSOD = tmpSeed.startingState();
174  DetId tmpDetId(tmpTSOD.detId());
175  const GeomDet* tmpGeomDet = theTrackingGeometry->idToDet(tmpDetId);
176  TrajectoryStateOnSurface tmpTSOS = trajectoryStateTransform::transientState(tmpTSOD, &(tmpGeomDet->surface()), &(*theMGField));
177  return tmpTSOS;
178 }
179 
180 // ------------ method called once each job just before starting event loop ------------
181 void
183 {
184 }
185 
186 // ------------ method called once each job just after ending the event loop ------------
187 void
189 }
190 
191 // ------------ method called when starting to processes a run ------------
192 /*
193 void
194 SeedToTrackProducer::beginRun(edm::Run const&, edm::EventSetup const&)
195 {
196 }
197 */
198 
199 // ------------ method called when ending the processing of a run ------------
200 /*
201 void
202 SeedToTrackProducer::endRun(edm::Run const&, edm::EventSetup const&)
203 {
204 }
205 */
206 
207 // ------------ method called when starting to processes a luminosity block ------------
208 /*
209 void
210 SeedToTrackProducer::beginLuminosityBlock(edm::LuminosityBlock const&, edm::EventSetup const&)
211 {
212 }
213 */
214 
215 // ------------ method called when ending the processing of a luminosity block ------------
216 /*
217 void
218 SeedToTrackProducer::endLuminosityBlock(edm::LuminosityBlock const&, edm::EventSetup const&)
219 {
220 }
221 */
222 
223 // ------------ method fills 'descriptions' with the allowed parameters for the module ------------
224 void
226  //The following says we do not know what parameters are allowed so do no validation
227  // Please change this to state exactly what you do use, even if it is no parameters
229  desc.setUnknown();
230  descriptions.addDefault(desc);
231 }
232 
233 //define this as a plug-in
T getParameter(std::string const &) const
int i
Definition: DBlmapReader.cc:9
T perp() const
Definition: PV3DBase.h:72
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:464
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:17
const CurvilinearTrajectoryError & curvilinearError() const
Sin< T >::type sin(const T &t)
Definition: Sin.h:22
Geom::Phi< T > phi() const
Definition: PV3DBase.h:69
std::vector< Track > TrackCollection
collection of Tracks
Definition: TrackFwd.h:14
double phi() const
azimuthal angle of momentum vector
Definition: TrackBase.h:632
virtual void beginJob() override
edm::ESHandle< MagneticField > theMGField
virtual void produce(edm::Event &, const edm::EventSetup &) override
int iEvent
Definition: GenABIO.cc:230
double eta() const
pseudorapidity of momentum vector
Definition: TrackBase.h:638
void addDefault(ParameterSetDescription const &psetDescription)
virtual TrajectoryStateOnSurface seedTransientState(const TrajectorySeed &)
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Event.h:120
double pt() const
track transverse momentum
Definition: TrackBase.h:608
edm::EDGetTokenT< TrajectorySeedCollection > L2seedsTagT_
Cos< T >::type cos(const T &t)
Definition: Cos.h:22
double ptError() const
error on Pt (set to 1000 TeV if charge==0 for safety)
Definition: TrackBase.h:750
double phiError() const
error on phi
Definition: TrackBase.h:777
unsigned int detId() const
RefProd< PROD > getRefBeforePut()
Definition: Event.h:140
SeedToTrackProducer(const edm::ParameterSet &)
Definition: DetId.h:18
std::vector< TrackExtra > TrackExtraCollection
collection of TrackExtra objects
Definition: TrackExtraFwd.h:11
edm::OwnVector< TrackingRecHit > TrackingRecHitCollection
collection of TrackingRecHits
void setExtra(const TrackExtraRef &ref)
set reference to &quot;extra&quot; object
Definition: Track.h:184
PTrajectoryStateOnDet const & startingState() const
TrajectoryStateOnSurface transientState(const PTrajectoryStateOnDet &ts, const Surface *surface, const MagneticField *field)
XYZVectorD XYZVector
spatial vector with cartesian internal representation
Definition: Vector3D.h:30
XYZPointD XYZPoint
point in space with cartesian internal representation
Definition: Point3D.h:12
tuple idx
DEBUGGING if hasattr(process,&quot;trackMonIterativeTracking2012&quot;): print &quot;trackMonIterativeTracking2012 D...
const T & get() const
Definition: EventSetup.h:56
TEveGeoShape * clone(const TEveElement *element, TEveElement *parent)
Definition: eve_macros.cc:135
static void fillDescriptions(edm::ConfigurationDescriptions &descriptions)
bool appendHitPattern(const TrackingRecHit &hit, const TrackerTopology &ttopo)
append a single hit to the HitPattern
Definition: TrackBase.h:447
T eta() const
Definition: PV3DBase.h:76
edm::EDGetTokenT< edm::View< TrajectorySeed > > L2seedsTagS_
const AlgebraicSymMatrix55 & matrix() const
GlobalVector globalMomentum() const
edm::ESHandle< GlobalTrackingGeometry > theTrackingGeometry
virtual void endJob() override
boost::remove_cv< typename boost::remove_reference< argument_type >::type >::type key_type
Definition: Ref.h:168