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 index_hit = 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.setHitPattern( *hit, index_hit);
148  selectedTrackHits->push_back(hit);
149  index_hit++;
150  theTrackExtra.add(TrackingRecHitRef( rHits, hidx ++ ) );
151  }
152  selectedTracks->push_back(theTrack);
153  selectedTrackExtras->push_back(theTrackExtra);
154 
155  }
156  iEvent.put(selectedTracks);
157  iEvent.put(selectedTrackExtras);
158  iEvent.put(selectedTrackHits);
159 
160 }
161 
163 
164  PTrajectoryStateOnDet tmpTSOD = tmpSeed.startingState();
165  DetId tmpDetId(tmpTSOD.detId());
166  const GeomDet* tmpGeomDet = theTrackingGeometry->idToDet(tmpDetId);
167  TrajectoryStateOnSurface tmpTSOS = trajectoryStateTransform::transientState(tmpTSOD, &(tmpGeomDet->surface()), &(*theMGField));
168  return tmpTSOS;
169 }
170 
171 // ------------ method called once each job just before starting event loop ------------
172 void
174 {
175 }
176 
177 // ------------ method called once each job just after ending the event loop ------------
178 void
180 }
181 
182 // ------------ method called when starting to processes a run ------------
183 /*
184 void
185 SeedToTrackProducer::beginRun(edm::Run const&, edm::EventSetup const&)
186 {
187 }
188 */
189 
190 // ------------ method called when ending the processing of a run ------------
191 /*
192 void
193 SeedToTrackProducer::endRun(edm::Run const&, edm::EventSetup const&)
194 {
195 }
196 */
197 
198 // ------------ method called when starting to processes a luminosity block ------------
199 /*
200 void
201 SeedToTrackProducer::beginLuminosityBlock(edm::LuminosityBlock const&, edm::EventSetup const&)
202 {
203 }
204 */
205 
206 // ------------ method called when ending the processing of a luminosity block ------------
207 /*
208 void
209 SeedToTrackProducer::endLuminosityBlock(edm::LuminosityBlock const&, edm::EventSetup const&)
210 {
211 }
212 */
213 
214 // ------------ method fills 'descriptions' with the allowed parameters for the module ------------
215 void
217  //The following says we do not know what parameters are allowed so do no validation
218  // Please change this to state exactly what you do use, even if it is no parameters
220  desc.setUnknown();
221  descriptions.addDefault(desc);
222 }
223 
224 //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:434
#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:10
double phi() const
azimuthal angle of momentum vector
Definition: TrackBase.h:137
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:139
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:116
edm::Ref< TrackingRecHitCollection > TrackingRecHitRef
persistent reference to a TrackingRecHit
double pt() const
track transverse momentum
Definition: TrackBase.h:129
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:192
double phiError() const
error on phi
Definition: TrackBase.h:205
unsigned int detId() const
RefProd< PROD > getRefBeforePut()
Definition: Event.h:128
SeedToTrackProducer(const edm::ParameterSet &)
Definition: DetId.h:18
void setHitPattern(const C &c)
set hit patterns from vector of hit references
Definition: TrackBase.h:244
std::vector< TrackExtra > TrackExtraCollection
collection of TrackExtra objects
Definition: TrackExtraFwd.h:9
edm::OwnVector< TrackingRecHit > TrackingRecHitCollection
collection of TrackingRecHits
void setExtra(const TrackExtraRef &ref)
set reference to &quot;extra&quot; object
Definition: Track.h:95
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
boost::remove_cv< typename boost::remove_reference< argument_type >::type >::type key_type
Definition: Ref.h:170
virtual void endJob() override