CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
TrackProducer.cc
Go to the documentation of this file.
2 // system include files
3 #include <memory>
4 // user include files
10 
12 
14 
16  KfTrackProducerBase(iConfig.getParameter<bool>("TrajectoryInEvent"),
17  iConfig.getParameter<bool>("useHitsSplitting")),
18  theAlgo(iConfig)
19 {
20  setConf(iConfig);
21  setSrc( iConfig.getParameter<edm::InputTag>( "src" ), iConfig.getParameter<edm::InputTag>( "beamSpot" ));
22  setAlias( iConfig.getParameter<std::string>( "@module_label" ) );
23 
24  if ( iConfig.exists("clusterRemovalInfo") ) {
25  edm::InputTag tag = iConfig.getParameter<edm::InputTag>("clusterRemovalInfo");
26  if (!(tag == edm::InputTag())) { setClusterRemovalInfo( tag ); }
27  }
28 
29  //register your products
30  produces<reco::TrackCollection>().setBranchAlias( alias_ + "Tracks" );
31  produces<reco::TrackExtraCollection>().setBranchAlias( alias_ + "TrackExtras" );
32  produces<TrackingRecHitCollection>().setBranchAlias( alias_ + "RecHits" );
33  produces<std::vector<Trajectory> >() ;
34  produces<TrajTrackAssociationCollection>();
35 
36 }
37 
38 
40 {
41  edm::LogInfo("TrackProducer") << "Analyzing event number: " << theEvent.id() << "\n";
42  //
43  // create empty output collections
44  //
45  std::auto_ptr<TrackingRecHitCollection> outputRHColl (new TrackingRecHitCollection);
46  std::auto_ptr<reco::TrackCollection> outputTColl(new reco::TrackCollection);
47  std::auto_ptr<reco::TrackExtraCollection> outputTEColl(new reco::TrackExtraCollection);
48  std::auto_ptr<std::vector<Trajectory> > outputTrajectoryColl(new std::vector<Trajectory>);
49 
50  //
51  //declare and get stuff to be retrieved from ES
52  //
56  edm::ESHandle<Propagator> thePropagator;
59  getFromES(setup,theG,theMF,theFitter,thePropagator,theMeasTk,theBuilder);
60 
61  //
62  //declare and get TrackColection to be retrieved from the event
63  //
64  AlgoProductCollection algoResults;
66  reco::BeamSpot bs;
67  getFromEvt(theEvent,theTCCollection,bs);
68  //protect against missing product
69  if (theTCCollection.failedToGet()){
70  edm::LogError("TrackProducer") <<"could not get the TrackCandidateCollection.";}
71  else{
72  LogDebug("TrackProducer") << "run the algorithm" << "\n";
73  try{
74  theAlgo.runWithCandidate(theG.product(), theMF.product(), *theTCCollection,
75  theFitter.product(), thePropagator.product(), theBuilder.product(), bs, algoResults);
76  } catch (cms::Exception &e){ edm::LogError("TrackProducer") << "cms::Exception caught during theAlgo.runWithCandidate." << "\n" << e << "\n"; throw;}
77  }
78 
79  //put everything in the event
80  putInEvt(theEvent, thePropagator.product(),theMeasTk.product(), outputRHColl, outputTColl, outputTEColl, outputTrajectoryColl, algoResults);
81  LogDebug("TrackProducer") << "end" << "\n";
82 }
83 
84 
85 std::vector<reco::TransientTrack> TrackProducer::getTransient(edm::Event& theEvent, const edm::EventSetup& setup)
86 {
87  edm::LogInfo("TrackProducer") << "Analyzing event number: " << theEvent.id() << "\n";
88  //
89  // create empty output collections
90  //
91  std::vector<reco::TransientTrack> ttks;
92 
93  //
94  //declare and get stuff to be retrieved from ES
95  //
99  edm::ESHandle<Propagator> thePropagator;
102  getFromES(setup,theG,theMF,theFitter,thePropagator,theMeasTk,theBuilder);
103 
104  //
105  //declare and get TrackColection to be retrieved from the event
106  //
107  AlgoProductCollection algoResults;
109  reco::BeamSpot bs;
110  getFromEvt(theEvent,theTCCollection,bs);
111  //protect against missing product
112  if (theTCCollection.failedToGet()){
113  edm::LogError("TrackProducer") <<"could not get the TrackCandidateCollection.";}
114  else{
115  LogDebug("TrackProducer") << "run the algorithm" << "\n";
116  try{
117  theAlgo.runWithCandidate(theG.product(), theMF.product(), *theTCCollection,
118  theFitter.product(), thePropagator.product(), theBuilder.product(), bs, algoResults);
119  }
120  catch (cms::Exception &e){ edm::LogError("TrackProducer") << "cms::Exception caught during theAlgo.runWithCandidate." << "\n" << e << "\n"; throw; }
121  }
122 
123  for (AlgoProductCollection::iterator prod=algoResults.begin();prod!=algoResults.end(); prod++){
124  ttks.push_back( reco::TransientTrack(*((*prod).second.first),thePropagator.product()->magneticField() ));
125  }
126 
127  LogDebug("TrackProducer") << "end" << "\n";
128 
129  return ttks;
130 }
131 
132 
#define LogDebug(id)
TrackProducerAlgorithm< reco::Track > theAlgo
Definition: TrackProducer.h:38
T getParameter(std::string const &) const
virtual void getFromEvt(edm::Event &, edm::Handle< TrackCandidateCollection > &, reco::BeamSpot &)
Get TrackCandidateCollection from the Event (needed by TrackProducer)
TrackProducer(const edm::ParameterSet &iConfig)
Constructor.
std::vector< Track > TrackCollection
collection of Tracks
Definition: TrackFwd.h:10
bool exists(std::string const &parameterName) const
checks if a parameter exists
void setClusterRemovalInfo(const edm::InputTag &clusterRemovalInfo)
Sets the information on cluster removal, and turns it on.
void setAlias(std::string alias)
set the aliases of produced collections
void setConf(edm::ParameterSet conf)
Set parameter set.
std::vector< AlgoProduct > AlgoProductCollection
void setSrc(edm::InputTag src, edm::InputTag bsSrc)
set label of source collection
bool failedToGet() const
Definition: HandleBase.h:80
std::vector< TrackExtra > TrackExtraCollection
collection of TrackExtra objects
Definition: TrackExtraFwd.h:9
std::vector< reco::TransientTrack > getTransient(edm::Event &, const edm::EventSetup &)
Get Transient Tracks.
T const * product() const
Definition: ESHandle.h:62
virtual void produce(edm::Event &, const edm::EventSetup &)
Implementation of produce method.
edm::EventID id() const
Definition: EventBase.h:56
virtual void putInEvt(edm::Event &, const Propagator *prop, const MeasurementTracker *measTk, std::auto_ptr< TrackingRecHitCollection > &, std::auto_ptr< reco::TrackCollection > &, std::auto_ptr< reco::TrackExtraCollection > &, std::auto_ptr< std::vector< Trajectory > > &, AlgoProductCollection &)
Put produced collections in the event.
void runWithCandidate(const TrackingGeometry *, const MagneticField *, const TrackCandidateCollection &, const TrajectoryFitter *, const Propagator *, const TransientTrackingRecHitBuilder *, const reco::BeamSpot &, AlgoProductCollection &)
Run the Final Fit taking TrackCandidates as input.
void setup(std::vector< TH2F > &depth, std::string name, std::string units="")
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.