CMS 3D CMS Logo

TrackRefitter.cc
Go to the documentation of this file.
2 // system include files
3 #include <memory>
4 // user include files
6 
8 
12 
15 
17  KfTrackProducerBase(iConfig.getParameter<bool>("TrajectoryInEvent"),
18  iConfig.getParameter<bool>("useHitsSplitting")),
19  theAlgo(iConfig)
20 {
21  setConf(iConfig);
22  setSrc( consumes<edm::View<reco::Track>>(iConfig.getParameter<edm::InputTag>( "src" )),
23  consumes<reco::BeamSpot>(iConfig.getParameter<edm::InputTag>( "beamSpot" )),
24  consumes<MeasurementTrackerEvent>(iConfig.getParameter<edm::InputTag>( "MeasurementTrackerEvent") ));
25  setAlias( iConfig.getParameter<std::string>( "@module_label" ) );
26  std::string constraint_str = iConfig.getParameter<std::string>( "constraint" );
27  edm::InputTag trkconstrcoll = iConfig.getParameter<edm::InputTag>( "srcConstr" );
28 
29 
30  if (constraint_str == "") constraint_ = none;
31  else if (constraint_str == "momentum") { constraint_ = momentum; trkconstrcoll_ = consumes<TrackMomConstraintAssociationCollection>(trkconstrcoll); }
32  else if (constraint_str == "vertex") { constraint_ = vertex; trkconstrcoll_ = consumes<TrackVtxConstraintAssociationCollection>(trkconstrcoll); }
33  else if (constraint_str == "trackParameters") { constraint_ = trackParameters; trkconstrcoll_ = consumes<TrackParamConstraintAssociationCollection>(trkconstrcoll); }
34  else {
35  edm::LogError("TrackRefitter")<<"constraint: "<<constraint_str<<" not understood. Set it to 'momentum', 'vertex', 'trackParameters' or leave it empty";
36  throw cms::Exception("TrackRefitter") << "unknown type of contraint! Set it to 'momentum', 'vertex', 'trackParameters' or leave it empty";
37  }
38 
39  //register your products
40  produces<reco::TrackCollection>().setBranchAlias( alias_ + "Tracks" );
41  produces<reco::TrackExtraCollection>().setBranchAlias( alias_ + "TrackExtras" );
42  produces<TrackingRecHitCollection>().setBranchAlias( alias_ + "RecHits" );
43  produces<std::vector<Trajectory> >() ;
44  produces<std::vector<int> >() ;
45  produces<TrajTrackAssociationCollection>();
46 
47 }
48 
50 {
51  LogDebug("TrackRefitter") << "Analyzing event number: " << theEvent.id() << "\n";
52  //
53  // create empty output collections
54  //
55  std::unique_ptr<TrackingRecHitCollection> outputRHColl (new TrackingRecHitCollection);
56  std::unique_ptr<reco::TrackCollection> outputTColl(new reco::TrackCollection);
57  std::unique_ptr<reco::TrackExtraCollection> outputTEColl(new reco::TrackExtraCollection);
58  std::unique_ptr<std::vector<Trajectory> > outputTrajectoryColl(new std::vector<Trajectory>);
59  std::unique_ptr<std::vector<int> > outputIndecesInputColl(new std::vector<int>);
60 
61  //
62  //declare and get stuff to be retrieved from ES
63  //
67  edm::ESHandle<Propagator> thePropagator;
70  getFromES(setup,theG,theMF,theFitter,thePropagator,theMeasTk,theBuilder);
71 
73  setup.get<TrackerTopologyRcd>().get(httopo);
74 
75  //
76  //declare and get TrackCollection to be retrieved from the event
77  //
78  AlgoProductCollection algoResults;
79  reco::BeamSpot bs;
80  switch(constraint_){
81  case none :
82  {
83  edm::Handle<edm::View<reco::Track>> theTCollection;
84  getFromEvt(theEvent,theTCollection,bs);
85 
86  LogDebug("TrackRefitter") << "TrackRefitter::produce(none):Number of Trajectories:" << (*theTCollection).size();
87 
88  if (bs.position()==math::XYZPoint(0.,0.,0.) && bs.type() == reco::BeamSpot::Unknown) {
89  edm::LogError("TrackRefitter") << " BeamSpot is (0,0,0), it is probably because is not valid in the event"; break; }
90 
91  if (theTCollection.failedToGet()){
93  labelsForToken(src_, labels);
94  edm::LogError("TrackRefitter")<<"could not get the reco::TrackCollection." << labels.module; break;}
95  LogDebug("TrackRefitter") << "run the algorithm" << "\n";
96 
97  try {
98  theAlgo.runWithTrack(theG.product(), theMF.product(), *theTCollection,
99  theFitter.product(), thePropagator.product(),
100  theBuilder.product(), bs, algoResults);
101  }catch (cms::Exception &e){ edm::LogError("TrackProducer") << "cms::Exception caught during theAlgo.runWithTrack." << "\n" << e << "\n"; throw; }
102  break;
103  }
104  case momentum :
105  {
106  edm::Handle<TrackMomConstraintAssociationCollection> theTCollectionWithConstraint;
107  theEvent.getByToken(trkconstrcoll_,theTCollectionWithConstraint);
108 
109 
110  edm::Handle<reco::BeamSpot> recoBeamSpotHandle;
111  theEvent.getByToken(bsSrc_,recoBeamSpotHandle);
112  if (!recoBeamSpotHandle.isValid()) break;
113  bs = *recoBeamSpotHandle;
114  if (theTCollectionWithConstraint.failedToGet()){
115  //edm::LogError("TrackRefitter")<<"could not get TrackMomConstraintAssociationCollection product.";
116  break;}
117  LogDebug("TrackRefitter") << "run the algorithm" << "\n";
118  try {
119  theAlgo.runWithMomentum(theG.product(), theMF.product(), *theTCollectionWithConstraint,
120  theFitter.product(), thePropagator.product(), theBuilder.product(), bs, algoResults);
121  }catch (cms::Exception &e){ edm::LogError("TrackProducer") << "cms::Exception caught during theAlgo.runWithMomentum." << "\n" << e << "\n"; throw; }
122  break;
123  }
124  case vertex :
125  {
126  edm::Handle<TrackVtxConstraintAssociationCollection> theTCollectionWithConstraint;
127  theEvent.getByToken(trkconstrcoll_,theTCollectionWithConstraint);
128  edm::Handle<reco::BeamSpot> recoBeamSpotHandle;
129  theEvent.getByToken(bsSrc_,recoBeamSpotHandle);
130  if (!recoBeamSpotHandle.isValid()) break;
131  bs = *recoBeamSpotHandle;
132  if (theTCollectionWithConstraint.failedToGet()){
133  edm::LogError("TrackRefitter")<<"could not get TrackVtxConstraintAssociationCollection product."; break;}
134  LogDebug("TrackRefitter") << "run the algorithm" << "\n";
135  try {
136  theAlgo.runWithVertex(theG.product(), theMF.product(), *theTCollectionWithConstraint,
137  theFitter.product(), thePropagator.product(), theBuilder.product(), bs, algoResults);
138  }catch (cms::Exception &e){ edm::LogError("TrackProducer") << "cms::Exception caught during theAlgo.runWithVertex." << "\n" << e << "\n"; throw; }
139  break;
140  }
141  case trackParameters :
142  {
143  edm::Handle<TrackParamConstraintAssociationCollection> theTCollectionWithConstraint;
144  theEvent.getByToken(trkconstrcoll_,theTCollectionWithConstraint);
145  edm::Handle<reco::BeamSpot> recoBeamSpotHandle;
146  theEvent.getByToken(bsSrc_,recoBeamSpotHandle);
147  if (!recoBeamSpotHandle.isValid()) break;
148  bs = *recoBeamSpotHandle;
149  if (theTCollectionWithConstraint.failedToGet()){
150  //edm::LogError("TrackRefitter")<<"could not get TrackParamConstraintAssociationCollection product.";
151  break;}
152  LogDebug("TrackRefitter") << "run the algorithm" << "\n";
153  try {
154  theAlgo.runWithTrackParameters(theG.product(), theMF.product(), *theTCollectionWithConstraint,
155  theFitter.product(), thePropagator.product(), theBuilder.product(), bs, algoResults);
156  }catch (cms::Exception &e){ edm::LogError("TrackProducer") << "cms::Exception caught during theAlgo.runWithTrackParameters." << "\n" << e << "\n"; throw; }
157  }
158  //default... there cannot be any other possibility due to the check in the ctor
159  }
160 
161 
162  //put everything in th event
163  putInEvt(theEvent, thePropagator.product(), theMeasTk.product(), outputRHColl, outputTColl, outputTEColl, outputTrajectoryColl, outputIndecesInputColl, algoResults,theBuilder.product(), httopo.product());
164  LogDebug("TrackRefitter") << "end" << "\n";
165 }
166 
#define LogDebug(id)
T getParameter(std::string const &) const
virtual void getFromEvt(edm::Event &, edm::Handle< TrackCandidateCollection > &, reco::BeamSpot &)
Get TrackCandidateCollection from the Event (needed by TrackProducer)
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:517
std::vector< Track > TrackCollection
collection of Tracks
Definition: TrackFwd.h:15
virtual void putInEvt(edm::Event &, const Propagator *prop, const MeasurementTracker *measTk, std::unique_ptr< TrackingRecHitCollection > &, std::unique_ptr< reco::TrackCollection > &, std::unique_ptr< reco::TrackExtraCollection > &, std::unique_ptr< std::vector< Trajectory > > &, std::unique_ptr< std::vector< int > > &, AlgoProductCollection &, TransientTrackingRecHitBuilder const *, const TrackerTopology *ttopo, int BeforeOrAfter=0)
Put produced collections in the event.
edm::EDGetToken trkconstrcoll_
Definition: TrackRefitter.h:27
def setup(process, global_tag, zero_tesla=False)
Definition: GeneralSetup.py:2
void setAlias(std::string alias)
set the aliases of produced collections
void setConf(const edm::ParameterSet &conf)
Set parameter set.
TrackProducerAlgorithm< reco::Track > theAlgo
Definition: TrackRefitter.h:24
void runWithMomentum(const TrackingGeometry *, const MagneticField *, const TrackMomConstraintAssociationCollection &, const TrajectoryFitter *, const Propagator *, const TransientTrackingRecHitBuilder *, const reco::BeamSpot &, AlgoProductCollection &)
Run the Final Fit taking TrackMomConstraintAssociation as input (Refitter with momentum constraint) ...
void runWithTrack(const TrackingGeometry *, const MagneticField *, const TrackView &, const TrajectoryFitter *, const Propagator *, const TransientTrackingRecHitBuilder *, const reco::BeamSpot &, AlgoProductCollection &)
Run the Final Fit taking Tracks as input (for Refitter)
bool isValid() const
Definition: HandleBase.h:74
char const * module
Definition: ProductLabels.h:5
Constraint constraint_
Definition: TrackRefitter.h:26
void setSrc(const edm::EDGetToken &src, const edm::EDGetTokenT< reco::BeamSpot > &bsSrc, const edm::EDGetTokenT< MeasurementTrackerEvent > &mteSrc)
set label of source collection
void runWithVertex(const TrackingGeometry *, const MagneticField *, const VtxConstraintAssociationCollection &, const TrajectoryFitter *, const Propagator *, const TransientTrackingRecHitBuilder *, const reco::BeamSpot &, AlgoProductCollection &)
bool failedToGet() const
Definition: HandleBase.h:78
std::vector< TrackExtra > TrackExtraCollection
collection of TrackExtra objects
Definition: TrackExtraFwd.h:11
void produce(edm::Event &, const edm::EventSetup &) override
Implementation of produce method.
XYZPointD XYZPoint
point in space with cartesian internal representation
Definition: Point3D.h:12
void runWithTrackParameters(const TrackingGeometry *, const MagneticField *, const TrackParamConstraintAssociationCollection &, const TrajectoryFitter *, const Propagator *, const TransientTrackingRecHitBuilder *, const reco::BeamSpot &, AlgoProductCollection &)
std::vector< AlgoProduct > AlgoProductCollection
edm::EDGetTokenT< reco::BeamSpot > bsSrc_
edm::EventID id() const
Definition: EventBase.h:59
T get() const
Definition: EventSetup.h:71
const Point & position() const
position
Definition: BeamSpot.h:62
T const * product() const
Definition: ESHandle.h:86
BeamType type() const
return beam type
Definition: BeamSpot.h:129
virtual void getFromES(const edm::EventSetup &, edm::ESHandle< TrackerGeometry > &, edm::ESHandle< MagneticField > &, edm::ESHandle< TrajectoryFitter > &, edm::ESHandle< Propagator > &, edm::ESHandle< MeasurementTracker > &, edm::ESHandle< TransientTrackingRecHitBuilder > &)
Get needed services from the Event Setup.
TrackRefitter(const edm::ParameterSet &iConfig)
Constructor.