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 
25 //
26 // class declaration
27 //
28 
29 
30 
31 //
32 // constants, enums and typedefs
33 //
34 
35 
36 //
37 // static data member definitions
38 //
39 
40 //
41 // constructors and destructor
42 //
44 {
45 
46  L2seedsTagT_ = consumes<TrajectorySeedCollection>(iConfig.getParameter<edm::InputTag>("L2seedsCollection"));
47  L2seedsTagS_ = consumes<edm::View<TrajectorySeed> >(iConfig.getParameter<edm::InputTag>("L2seedsCollection"));
48 
49 
50 
51 
52  produces<reco::TrackCollection>();
53  produces<reco::TrackExtraCollection>();
54  produces<TrackingRecHitCollection>();
55 
56 
57 }
58 
59 
61 {
62 
63  // do anything here that needs to be done at desctruction time
64  // (e.g. close files, deallocate resources etc.)
65 
66 }
67 
68 
69 //
70 // member functions
71 //
72 
73 // ------------ method called to produce the data ------------
74 void
76 {
77  using namespace edm;
78  using namespace std;
79 
80  std::auto_ptr<reco::TrackCollection> selectedTracks(new reco::TrackCollection);
81  std::auto_ptr<reco::TrackExtraCollection> selectedTrackExtras( new reco::TrackExtraCollection() );
82  std::auto_ptr<TrackingRecHitCollection> selectedTrackHits( new TrackingRecHitCollection() );
83 
87 
90 
91  // magnetic fied and detector geometry
94 
95  // now read the L2 seeds collection :
96  edm::Handle<TrajectorySeedCollection> L2seedsCollection;
97  iEvent.getByToken(L2seedsTagT_,L2seedsCollection);
98  const std::vector<TrajectorySeed>* L2seeds = 0;
99  if (L2seedsCollection.isValid()) L2seeds = L2seedsCollection.product();
100  else edm::LogError("SeedToTrackProducer") << "L2 seeds collection not found !! " << endl;
101 
103  iEvent.getByToken(L2seedsTagS_, seedHandle);
104 
105 
106  int countRH = 0;
107 
108  // now loop on the seeds :
109  for (unsigned int i = 0; i < L2seeds->size() ; i++){
110 
111 
112  //get the kinematic extrapolation from the seed
113  TrajectoryStateOnSurface theTrajectory = seedTransientState(L2seeds->at(i));
114  float seedEta = theTrajectory.globalMomentum().eta();
115  float seedPhi = theTrajectory.globalMomentum().phi();
116  float seedPt = theTrajectory.globalMomentum().perp();
117  CovarianceMatrix matrixSeedErr = theTrajectory.curvilinearError().matrix();
118  edm::LogVerbatim("SeedToTrackProducer") << "seedPt=" << seedPt << " seedEta=" << seedEta << " seedPhi=" << seedPhi << endl;
119  /*AlgebraicSymMatrix66 errors = theTrajectory.cartesianError().matrix();
120  double partialPterror = errors(3,3)*pow(theTrajectory.globalMomentum().x(),2) + errors(4,4)*pow(theTrajectory.globalMomentum().y(),2);
121  edm::LogVerbatim("SeedToTrackProducer") << "seedPtError=" << sqrt(partialPterror)/theTrajectory.globalMomentum().perp() << "seedPhiError=" << theTrajectory.curvilinearError().matrix()(2,2) << endl;*/
122  //fill the track in a way that its pt, phi and eta will be the same as the seed
123  math::XYZPoint initPoint(0,0,0);
124  math::XYZVector initMom(seedPt*cos(seedPhi),seedPt*sin(seedPhi),seedPt*sinh(seedEta));
125  reco::Track theTrack(1, 1, //dummy Chi2 and ndof
126  initPoint, initMom,
127  1, matrixSeedErr,
128  reco::TrackBase::TrackAlgorithm::globalMuon, reco::TrackBase::TrackQuality::tight);
129 
130  //fill the extra track with dummy information
131  math::XYZPoint dummyFinalPoint(1,1,1);
132  math::XYZVector dummyFinalMom(0,0,10);
134  CovarianceMatrix matrixExtra = ROOT::Math::SMatrixIdentity();
135  reco::TrackExtra theTrackExtra(dummyFinalPoint, dummyFinalMom, true, initPoint, initMom, true,
136  matrixSeedErr, 1,
137  matrixExtra, 2,
138  (L2seeds->at(i)).direction(), seed);
139  theTrack.setExtra( reco::TrackExtraRef( rTrackExtras, idx++ ) );
140  edm::LogVerbatim("SeedToTrackProducer") << "trackPt=" << theTrack.pt() << " trackEta=" << theTrack.eta() << " trackPhi=" << theTrack.phi() << endl;
141  edm::LogVerbatim("SeedToTrackProducer") << "trackPtError=" << theTrack.ptError() << "trackPhiError=" << theTrack.phiError() << endl;
142 
143  //fill the seed segments in the track
144  unsigned int nHitsAdded = 0;
145  for(TrajectorySeed::recHitContainer::const_iterator itRecHits=(L2seeds->at(i)).recHits().first; itRecHits!=(L2seeds->at(i)).recHits().second; ++itRecHits, ++countRH) {
146  TrackingRecHit* hit = (itRecHits)->clone();
147  theTrack.appendHitPattern(*hit);
148  selectedTrackHits->push_back(hit);
149  nHitsAdded++;
150  }
151  theTrackExtra.setHits( rHits, hidx, nHitsAdded );
152  hidx += nHitsAdded;
153  selectedTracks->push_back(theTrack);
154  selectedTrackExtras->push_back(theTrackExtra);
155 
156  }
157  iEvent.put(selectedTracks);
158  iEvent.put(selectedTrackExtras);
159  iEvent.put(selectedTrackHits);
160 
161 }
162 
164 
165  PTrajectoryStateOnDet tmpTSOD = tmpSeed.startingState();
166  DetId tmpDetId(tmpTSOD.detId());
167  const GeomDet* tmpGeomDet = theTrackingGeometry->idToDet(tmpDetId);
168  TrajectoryStateOnSurface tmpTSOS = trajectoryStateTransform::transientState(tmpTSOD, &(tmpGeomDet->surface()), &(*theMGField));
169  return tmpTSOS;
170 }
171 
172 // ------------ method called once each job just before starting event loop ------------
173 void
175 {
176 }
177 
178 // ------------ method called once each job just after ending the event loop ------------
179 void
181 }
182 
183 // ------------ method called when starting to processes a run ------------
184 /*
185 void
186 SeedToTrackProducer::beginRun(edm::Run const&, edm::EventSetup const&)
187 {
188 }
189 */
190 
191 // ------------ method called when ending the processing of a run ------------
192 /*
193 void
194 SeedToTrackProducer::endRun(edm::Run const&, edm::EventSetup const&)
195 {
196 }
197 */
198 
199 // ------------ method called when starting to processes a luminosity block ------------
200 /*
201 void
202 SeedToTrackProducer::beginLuminosityBlock(edm::LuminosityBlock const&, edm::EventSetup const&)
203 {
204 }
205 */
206 
207 // ------------ method called when ending the processing of a luminosity block ------------
208 /*
209 void
210 SeedToTrackProducer::endLuminosityBlock(edm::LuminosityBlock const&, edm::EventSetup const&)
211 {
212 }
213 */
214 
215 // ------------ method fills 'descriptions' with the allowed parameters for the module ------------
216 void
218  //The following says we do not know what parameters are allowed so do no validation
219  // Please change this to state exactly what you do use, even if it is no parameters
221  desc.setUnknown();
222  descriptions.addDefault(desc);
223 }
224 
225 //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:449
#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:13
double phi() const
azimuthal angle of momentum vector
Definition: TrackBase.h:598
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:604
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:113
double pt() const
track transverse momentum
Definition: TrackBase.h:574
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:716
double phiError() const
error on phi
Definition: TrackBase.h:743
bool appendHitPattern(const TrackingRecHit &hit)
append a single hit to the HitPattern
Definition: TrackBase.h:421
unsigned int detId() const
RefProd< PROD > getRefBeforePut()
Definition: Event.h:133
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:55
TEveGeoShape * clone(const TEveElement *element, TEveElement *parent)
Definition: eve_macros.cc:135
static void fillDescriptions(edm::ConfigurationDescriptions &descriptions)
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:170