CMS 3D CMS Logo

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 #include "SeedToTrackProducer.h"
21 
24 
25 //
26 // constructors and destructor
27 //
29 {
30 
31  L2seedsTagT_ = consumes<TrajectorySeedCollection>(iConfig.getParameter<edm::InputTag>("L2seedsCollection"));
32  L2seedsTagS_ = consumes<edm::View<TrajectorySeed> >(iConfig.getParameter<edm::InputTag>("L2seedsCollection"));
33 
34  produces<reco::TrackCollection>();
35  produces<reco::TrackExtraCollection>();
36  produces<TrackingRecHitCollection>();
37 }
38 
40 {
41 }
42 
43 //
44 // member functions
45 //
46 
47 // ------------ method called to produce the data ------------
48 void
50 {
51  using namespace edm;
52  using namespace std;
53 
54  std::unique_ptr<reco::TrackCollection> selectedTracks(new reco::TrackCollection);
55  std::unique_ptr<reco::TrackExtraCollection> selectedTrackExtras( new reco::TrackExtraCollection() );
56  std::unique_ptr<TrackingRecHitCollection> selectedTrackHits( new TrackingRecHitCollection() );
57 
61 
64 
65  // magnetic fied and detector geometry
68 
70  iSetup.get<TrackerTopologyRcd>().get(httopo);
71  const TrackerTopology& ttopo = *httopo;
72 
73  // now read the L2 seeds collection :
75  iEvent.getByToken(L2seedsTagT_,L2seedsCollection);
76  const std::vector<TrajectorySeed>* L2seeds = nullptr;
77  if (L2seedsCollection.isValid()) L2seeds = L2seedsCollection.product();
78  else edm::LogError("SeedToTrackProducer") << "L2 seeds collection not found !! " << endl;
79 
81  iEvent.getByToken(L2seedsTagS_, seedHandle);
82 
83 
84  int countRH = 0;
85 
86  // now loop on the seeds :
87  for (unsigned int i = 0; i < L2seeds->size() ; i++){
88 
89 
90  //get the kinematic extrapolation from the seed
91  TrajectoryStateOnSurface theTrajectory = seedTransientState(L2seeds->at(i));
92  float seedEta = theTrajectory.globalMomentum().eta();
93  float seedPhi = theTrajectory.globalMomentum().phi();
94  float seedPt = theTrajectory.globalMomentum().perp();
95  CovarianceMatrix matrixSeedErr = theTrajectory.curvilinearError().matrix();
96  edm::LogVerbatim("SeedToTrackProducer") << "seedPt=" << seedPt << " seedEta=" << seedEta << " seedPhi=" << seedPhi << endl;
97  /*AlgebraicSymMatrix66 errors = theTrajectory.cartesianError().matrix();
98  double partialPterror = errors(3,3)*pow(theTrajectory.globalMomentum().x(),2) + errors(4,4)*pow(theTrajectory.globalMomentum().y(),2);
99  edm::LogVerbatim("SeedToTrackProducer") << "seedPtError=" << sqrt(partialPterror)/theTrajectory.globalMomentum().perp() << "seedPhiError=" << theTrajectory.curvilinearError().matrix()(2,2) << endl;*/
100  //fill the track in a way that its pt, phi and eta will be the same as the seed
101  math::XYZPoint initPoint(0,0,0);
102  math::XYZVector initMom(seedPt*cos(seedPhi),seedPt*sin(seedPhi),seedPt*sinh(seedEta));
103  reco::Track theTrack(1, 1, //dummy Chi2 and ndof
104  initPoint, initMom,
105  1, matrixSeedErr,
106  reco::TrackBase::TrackAlgorithm::globalMuon, reco::TrackBase::TrackQuality::tight);
107 
108  //fill the extra track with dummy information
109  math::XYZPoint dummyFinalPoint(1,1,1);
110  math::XYZVector dummyFinalMom(0,0,10);
112  CovarianceMatrix matrixExtra = ROOT::Math::SMatrixIdentity();
113  reco::TrackExtra theTrackExtra(dummyFinalPoint, dummyFinalMom, true, initPoint, initMom, true,
114  matrixSeedErr, 1,
115  matrixExtra, 2,
116  (L2seeds->at(i)).direction(), seed);
117  theTrack.setExtra( reco::TrackExtraRef( rTrackExtras, idx++ ) );
118  edm::LogVerbatim("SeedToTrackProducer") << "trackPt=" << theTrack.pt() << " trackEta=" << theTrack.eta() << " trackPhi=" << theTrack.phi() << endl;
119  edm::LogVerbatim("SeedToTrackProducer") << "trackPtError=" << theTrack.ptError() << "trackPhiError=" << theTrack.phiError() << endl;
120 
121  //fill the seed segments in the track
122  unsigned int nHitsAdded = 0;
123  for(TrajectorySeed::recHitContainer::const_iterator itRecHits=(L2seeds->at(i)).recHits().first; itRecHits!=(L2seeds->at(i)).recHits().second; ++itRecHits, ++countRH) {
124  TrackingRecHit* hit = (itRecHits)->clone();
125  theTrack.appendHitPattern(*hit, ttopo);
126  selectedTrackHits->push_back(hit);
127  nHitsAdded++;
128  }
129  theTrackExtra.setHits( rHits, hidx, nHitsAdded );
130  hidx += nHitsAdded;
131  selectedTracks->push_back(theTrack);
132  selectedTrackExtras->push_back(theTrackExtra);
133 
134  }
135  iEvent.put(std::move(selectedTracks));
136  iEvent.put(std::move(selectedTrackExtras));
137  iEvent.put(std::move(selectedTrackHits));
138 
139 }
140 
142 
143  PTrajectoryStateOnDet tmpTSOD = tmpSeed.startingState();
144  DetId tmpDetId(tmpTSOD.detId());
145  const GeomDet* tmpGeomDet = theTrackingGeometry->idToDet(tmpDetId);
146  TrajectoryStateOnSurface tmpTSOS = trajectoryStateTransform::transientState(tmpTSOD, &(tmpGeomDet->surface()), &(*theMGField));
147  return tmpTSOS;
148 }
149 
150 // ------------ method called once each job just before starting event loop ------------
151 void
153 {
154 }
155 
156 // ------------ method called once each job just after ending the event loop ------------
157 void
159 }
160 
161 //define this as a plug-in
T getParameter(std::string const &) const
std::remove_cv< typename std::remove_reference< argument_type >::type >::type key_type
Definition: Ref.h:169
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
Definition: Event.h:136
T perp() const
Definition: PV3DBase.h:72
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:519
#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:645
edm::ESHandle< MagneticField > theMGField
void produce(edm::Event &, const edm::EventSetup &) override
int iEvent
Definition: GenABIO.cc:230
double eta() const
pseudorapidity of momentum vector
Definition: TrackBase.h:651
virtual TrajectoryStateOnSurface seedTransientState(const TrajectorySeed &)
double pt() const
track transverse momentum
Definition: TrackBase.h:621
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:763
double phiError() const
error on phi
Definition: TrackBase.h:790
unsigned int detId() const
bool isValid() const
Definition: HandleBase.h:74
RefProd< PROD > getRefBeforePut()
Definition: Event.h:156
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 "extra" object
Definition: Track.h:184
PTrajectoryStateOnDet const & startingState() const
TrajectoryStateOnSurface transientState(const PTrajectoryStateOnDet &ts, const Surface *surface, const MagneticField *field)
T const * product() const
Definition: Handle.h:81
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
const T & get() const
Definition: EventSetup.h:59
TEveGeoShape * clone(const TEveElement *element, TEveElement *parent)
Definition: eve_macros.cc:135
bool appendHitPattern(const TrackingRecHit &hit, const TrackerTopology &ttopo)
append a single hit to the HitPattern
Definition: TrackBase.h:456
T eta() const
Definition: PV3DBase.h:76
edm::EDGetTokenT< edm::View< TrajectorySeed > > L2seedsTagS_
HLT enums.
const AlgebraicSymMatrix55 & matrix() const
GlobalVector globalMomentum() const
const GeomDet * idToDet(DetId) const override
edm::ESHandle< GlobalTrackingGeometry > theTrackingGeometry
def move(src, dest)
Definition: eostools.py:510