CMS 3D CMS Logo

GsfTrackRefitter.cc
Go to the documentation of this file.
2 // system include files
3 #include <memory>
4 // user include files
6 
8 
14 
17 
19  GsfTrackProducerBase(iConfig.getParameter<bool>("TrajectoryInEvent"),
20  iConfig.getParameter<bool>("useHitsSplitting")),
21  theAlgo(iConfig)
22 {
23  setConf(iConfig);
24  setSrc( consumes<edm::View<reco::GsfTrack>>(iConfig.getParameter<edm::InputTag>( "src" )),
25  consumes<reco::BeamSpot>(iConfig.getParameter<edm::InputTag>( "beamSpot" )),
26  consumes<MeasurementTrackerEvent>(iConfig.getParameter<edm::InputTag>( "MeasurementTrackerEvent") ));
27  setAlias( iConfig.getParameter<std::string>( "@module_label" ) );
28  std::string constraint_str = iConfig.getParameter<std::string>( "constraint" );
29 
30  if (constraint_str == "") constraint_ = none;
31 // else if (constraint_str == "momentum") constraint_ = momentum;
32  else if (constraint_str == "vertex") {
34  gsfTrackVtxConstraintTag_ = consumes<GsfTrackVtxConstraintAssociationCollection>(iConfig.getParameter<edm::InputTag>("gsfTrackVtxConstraintTag"));
35  } else {
36  edm::LogError("GsfTrackRefitter")<<"constraint: "<<constraint_str<<" not understood. Set it to 'momentum', 'vertex' or leave it empty";
37  throw cms::Exception("GsfTrackRefitter") << "unknown type of contraint! Set it to 'momentum', 'vertex' or leave it empty";
38  }
39 
40  //register your products
41  produces<reco::GsfTrackCollection>().setBranchAlias( alias_ + "GsfTracks" );
42  produces<reco::TrackExtraCollection>().setBranchAlias( alias_ + "TrackExtras" );
43  produces<reco::GsfTrackExtraCollection>().setBranchAlias( alias_ + "GsfTrackExtras" );
44  produces<TrackingRecHitCollection>().setBranchAlias( alias_ + "RecHits" );
45  produces<std::vector<Trajectory> >() ;
46  produces<TrajGsfTrackAssociationCollection>();
47 
48 }
49 
51 {
52  edm::LogInfo("GsfTrackRefitter") << "Analyzing event number: " << theEvent.id() << "\n";
53  //
54  // create empty output collections
55  //
56  std::unique_ptr<TrackingRecHitCollection> outputRHColl (new TrackingRecHitCollection);
57  std::unique_ptr<reco::GsfTrackCollection> outputTColl(new reco::GsfTrackCollection);
58  std::unique_ptr<reco::TrackExtraCollection> outputTEColl(new reco::TrackExtraCollection);
59  std::unique_ptr<reco::GsfTrackExtraCollection> outputGsfTEColl(new reco::GsfTrackExtraCollection);
60  std::unique_ptr<std::vector<Trajectory> > outputTrajectoryColl(new std::vector<Trajectory>);
61 
62  //
63  //declare and get stuff to be retrieved from ES
64  //
68  edm::ESHandle<Propagator> thePropagator;
70  // getFromES(setup,theG,theMF,theFitter,thePropagator);
72  getFromES(setup,theG,theMF,theFitter,thePropagator,theMeasTk,theBuilder);
73 
75  setup.get<TrackerTopologyRcd>().get(httopo);
76 
77  //
78  //declare and get TrackCollection to be retrieved from the event
79  //
80  AlgoProductCollection algoResults;
81  reco::BeamSpot bs;
82  switch(constraint_){
83  case none :
84  {
86  getFromEvt(theEvent,theTCollection,bs);
87  if (theTCollection.failedToGet()){
88  edm::LogError("GsfTrackRefitter")<<"could not get the reco::GsfTrackCollection."; return;}
89  LogDebug("GsfTrackRefitter") << "run the algorithm" << "\n";
90  try {
91  theAlgo.runWithTrack(theG.product(), theMF.product(), *theTCollection,
92  theFitter.product(), thePropagator.product(),
93  theBuilder.product(), bs, algoResults);
94  }catch (cms::Exception &e){ edm::LogError("TrackProducer") << "cms::Exception caught during theAlgo.runWithTrack." << "\n" << e << "\n"; throw; }
95  break;
96  }
97  case vertex :
98  {
100  theEvent.getByToken(gsfTrackVtxConstraintTag_, theTCollectionWithConstraint);
101  edm::Handle<reco::BeamSpot> recoBeamSpotHandle;
102  theEvent.getByToken(bsSrc_,recoBeamSpotHandle);
103  bs = *recoBeamSpotHandle;
104  if (theTCollectionWithConstraint.failedToGet()){
105  edm::LogError("TrackRefitter")<<"could not get TrackVtxConstraintAssociationCollection product."; break;}
106  LogDebug("TrackRefitter") << "run the algorithm" << "\n";
107  try {
108  theAlgo.runWithVertex(theG.product(), theMF.product(), *theTCollectionWithConstraint,
109  theFitter.product(), thePropagator.product(), theBuilder.product(), bs, algoResults);
110  }catch (cms::Exception &e){ edm::LogError("TrackProducer") << "cms::Exception caught during theAlgo.runWithTrack." << "\n" << e << "\n"; throw; }
111  }
112  //default... there cannot be any other possibility due to the check in the ctor
113  }
114 
115  //put everything in th event
116  putInEvt(theEvent, thePropagator.product(), theMeasTk.product(),
117  outputRHColl, outputTColl, outputTEColl, outputGsfTEColl, outputTrajectoryColl, algoResults, theBuilder.product(), bs, httopo.product());
118  LogDebug("GsfTrackRefitter") << "end" << "\n";
119 }
120 
#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
Constraint constraint_
std::vector< GsfTrackExtra > GsfTrackExtraCollection
collection of GsfTrackExtra objects
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.
GsfTrackRefitter(const edm::ParameterSet &iConfig)
Constructor.
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)
void produce(edm::Event &, const edm::EventSetup &) override
Implementation of produce method.
std::vector< GsfTrack > GsfTrackCollection
collection of GsfTracks
Definition: GsfTrackFwd.h:9
virtual void putInEvt(edm::Event &, const Propagator *prop, const MeasurementTracker *measTk, std::unique_ptr< TrackingRecHitCollection > &, std::unique_ptr< reco::GsfTrackCollection > &, std::unique_ptr< reco::TrackExtraCollection > &, std::unique_ptr< reco::GsfTrackExtraCollection > &, std::unique_ptr< std::vector< Trajectory > > &, AlgoProductCollection &, TransientTrackingRecHitBuilder const *, const reco::BeamSpot &, const TrackerTopology *ttopo)
Put produced collections in the event.
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
std::vector< AlgoProduct > AlgoProductCollection
edm::EDGetTokenT< reco::BeamSpot > bsSrc_
edm::EventID id() const
Definition: EventBase.h:59
T get() const
Definition: EventSetup.h:71
TrackProducerAlgorithm< reco::GsfTrack > theAlgo
edm::EDGetTokenT< GsfTrackVtxConstraintAssociationCollection > gsfTrackVtxConstraintTag_
T const * product() const
Definition: ESHandle.h:86
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.