CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
DAFTrackProducer.cc
Go to the documentation of this file.
1 #include <memory>
2 
16 
17 
18 
20  KfTrackProducerBase(iConfig.getParameter<bool>("TrajectoryInEvent"),false),
21  theAlgo(iConfig)
22 {
23  setConf(iConfig);
24  setSrc( consumes<TrackCandidateCollection>(iConfig.getParameter<edm::InputTag>( "src" )),
25  consumes<reco::BeamSpot>(iConfig.getParameter<edm::InputTag>( "beamSpot" )),
26  consumes<MeasurementTrackerEvent>(iConfig.getParameter<edm::InputTag>( "MeasurementTrackerEvent") ));
27  srcTT_ = consumes<TrajTrackAssociationCollection>(iConfig.getParameter<edm::InputTag>( "src" ));
28  setAlias( iConfig.getParameter<std::string>( "@module_label" ) );
29 
30  //register your products
31  produces<reco::TrackCollection>().setBranchAlias( alias_ + "Tracks" );
32  produces<reco::TrackExtraCollection>().setBranchAlias( alias_ + "TrackExtras" );
33  produces<TrackingRecHitCollection>().setBranchAlias( alias_ + "RecHits" );
34  produces<std::vector<Trajectory> >();
35  produces<TrajTrackAssociationCollection>();
36  produces<TrajAnnealingCollection>().setBranchAlias( alias_ + "TrajectoryAnnealing" );
37  produces<reco::TrackCollection>("beforeDAF").setBranchAlias( alias_ + "TracksBeforeDAF" );
38  produces<reco::TrackExtraCollection>("beforeDAF").setBranchAlias( alias_ + "TrackExtrasBeforeDAF" );
39  produces<reco::TrackCollection>("afterDAF").setBranchAlias( alias_ + "TracksAfterDAF" );
40  produces<reco::TrackExtraCollection>("afterDAF").setBranchAlias( alias_ + "TrackExtrasAfterDAF" );
41 
42  TrajAnnSaving_ = iConfig.getParameter<bool>("TrajAnnealingSaving");
43 }
44 
45 
47 {
48  edm::LogInfo("DAFTrackProducer") << "Analyzing event number: " << theEvent.id() << "\n";
49 
50  //empty output collections
51  std::auto_ptr<TrackingRecHitCollection> outputRHColl (new TrackingRecHitCollection);
52  std::auto_ptr<reco::TrackCollection> outputTColl(new reco::TrackCollection);
53  std::auto_ptr<reco::TrackExtraCollection> outputTEColl(new reco::TrackExtraCollection);
54  std::auto_ptr<std::vector<Trajectory> > outputTrajectoryColl(new std::vector<Trajectory>);
55  std::auto_ptr<TrajAnnealingCollection> outputTrajAnnColl(new TrajAnnealingCollection);
56 
57  //new tracks collections (changes before and after DAF)
58  std::auto_ptr<TrackingRecHitCollection> outputRHCollBeforeDAF (new TrackingRecHitCollection);
59  std::auto_ptr<reco::TrackCollection> outputTCollBeforeDAF(new reco::TrackCollection);
60  std::auto_ptr<reco::TrackExtraCollection> outputTECollBeforeDAF(new reco::TrackExtraCollection);
61  std::auto_ptr<std::vector<Trajectory> > outputTrajectoryCollBeforeDAF(new std::vector<Trajectory>);
62  //----
63  std::auto_ptr<TrackingRecHitCollection> outputRHCollAfterDAF (new TrackingRecHitCollection);
64  std::auto_ptr<reco::TrackCollection> outputTCollAfterDAF(new reco::TrackCollection);
65  std::auto_ptr<reco::TrackExtraCollection> outputTECollAfterDAF(new reco::TrackExtraCollection);
66  std::auto_ptr<std::vector<Trajectory> > outputTrajectoryCollAfterDAF(new std::vector<Trajectory>);
67 
68  //declare and get stuff to be retrieved from ES
72  edm::ESHandle<Propagator> thePropagator;
75  getFromES(setup,theG,theMF,theFitter,thePropagator,theMeasTk,theBuilder);
76 
77  //get additional es_modules needed by the DAF
78  edm::ESHandle<MultiRecHitCollector> measurementCollectorHandle;
79  std::string measurementCollectorName = getConf().getParameter<std::string>("MeasurementCollector");
80  setup.get<MultiRecHitRecord>().get(measurementCollectorName, measurementCollectorHandle);
82  std::string updatorName = getConf().getParameter<std::string>("UpdatorName");
83  setup.get<MultiRecHitRecord>().get(updatorName, updatorHandle);
84 
85  //get MeasurementTrackerEvent
87  theEvent.getByToken(mteSrc_, mte);
88 
89 
90  //declare and get TrackCollection
91  AlgoProductCollection algoResults;
92  reco::BeamSpot bs;
93  TrajAnnealingCollection trajannResults;
94 
95  //declare and get new tracks collections
96  AlgoProductCollection algoResultsBeforeDAF;
97  AlgoProductCollection algoResultsAfterDAF;
98  try{
99 
100  edm::Handle<TrajTrackAssociationCollection> trajTrackAssociationHandle;
101  getFromEvt(theEvent,trajTrackAssociationHandle,bs);
102 
103 
104  //run the algorithm
105  LogDebug("DAFTrackProducer") << "run the DAF algorithm" << "\n";
106  theAlgo.runWithCandidate(theG.product(), theMF.product(),
107  *trajTrackAssociationHandle,
108  &*mte,
109  theFitter.product(), theBuilder.product(),
110  measurementCollectorHandle.product(), updatorHandle.product(), bs,
111  algoResults, trajannResults, TrajAnnSaving_,
112  algoResultsBeforeDAF, algoResultsAfterDAF);
113 
114  } catch (cms::Exception &e){
115  edm::LogInfo("DAFTrackProducer") << "cms::Exception caught!!!" << "\n" << e << "\n";
116  throw;
117  }
118 
119  //put everything in the event
120  putInEvt(theEvent, thePropagator.product(),theMeasTk.product(),
121  outputRHColl, outputTColl, outputTEColl,
122  outputTrajectoryColl, algoResults, theBuilder.product());
123  putInEvtTrajAnn(theEvent, trajannResults, outputTrajAnnColl);
124 
125  //put in theEvent before and after DAF tracks collections
126  putInEvt(theEvent, thePropagator.product(),theMeasTk.product(),
127  outputRHCollBeforeDAF, outputTCollBeforeDAF, outputTECollBeforeDAF,
128  outputTrajectoryCollBeforeDAF, algoResultsBeforeDAF, theBuilder.product(), 1);
129  putInEvt(theEvent, thePropagator.product(),theMeasTk.product(),
130  outputRHCollAfterDAF, outputTCollAfterDAF, outputTECollAfterDAF,
131  outputTrajectoryCollAfterDAF, algoResultsAfterDAF, theBuilder.product(), 2);
132 
133  LogDebug("DAFTrackProducer") << "end the DAF algorithm." << "\n";
134 }
135 //----------------------------------------------------------------------------------------------------------//
137 {
138 
139  //get the TrajTrackMap from the event
140  //WARNING: src has always to be redefined in cfg file
141  theEvent.getByToken(srcTT_,trajTrackAssociationHandle);
142 
143  //get the BeamSpot
144  edm::Handle<reco::BeamSpot> recoBeamSpotHandle;
145  theEvent.getByToken(bsSrc_,recoBeamSpotHandle);
146  bs = *recoBeamSpotHandle;
147 
148 }
149 //----------------------------------------------------------------------------------------------------------//
151  std::auto_ptr<TrajAnnealingCollection>& outputTrajAnnColl){
152  const int size = trajannResults.size();
153  outputTrajAnnColl->reserve(size);
154 
155  for(unsigned int i = 0; i < trajannResults.size() ; i++){
156  outputTrajAnnColl->push_back(trajannResults[i]);
157  }
158 
159  theEvent.put( outputTrajAnnColl );
160 }
#define LogDebug(id)
T getParameter(std::string const &) const
int i
Definition: DBlmapReader.cc:9
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 &, TransientTrackingRecHitBuilder const *, int BeforeOrAfter=0)
Put produced collections in the event.
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:457
void runWithCandidate(const TrackingGeometry *, const MagneticField *, const TrajTrackAssociationCollection &, const MeasurementTrackerEvent *measTk, const TrajectoryFitter *, const TransientTrackingRecHitBuilder *, const MultiRecHitCollector *measurementTracker, const SiTrackerMultiRecHitUpdator *, const reco::BeamSpot &, AlgoProductCollection &, TrajAnnealingCollection &, bool, AlgoProductCollection &, AlgoProductCollection &) const
Run the Final Fit taking TrackCandidates as input.
std::vector< Track > TrackCollection
collection of Tracks
Definition: TrackFwd.h:13
DAFTrackProducerAlgorithm theAlgo
std::vector< TrajAnnealing > TrajAnnealingCollection
Definition: TrajAnnealing.h:42
void setAlias(std::string alias)
set the aliases of produced collections
void setConf(const edm::ParameterSet &conf)
Set parameter set.
edm::EDGetToken srcTT_
void getFromEvt(edm::Event &, edm::Handle< TrajTrackAssociationCollection > &, reco::BeamSpot &)
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Event.h:115
std::vector< AlgoProduct > AlgoProductCollection
edm::EDGetTokenT< MeasurementTrackerEvent > mteSrc_
void setSrc(const edm::EDGetToken &src, const edm::EDGetTokenT< reco::BeamSpot > &bsSrc, const edm::EDGetTokenT< MeasurementTrackerEvent > &mteSrc)
set label of source collection
std::vector< TrackExtra > TrackExtraCollection
collection of TrackExtra objects
Definition: TrackExtraFwd.h:11
void putInEvtTrajAnn(edm::Event &theEvent, TrajAnnealingCollection &trajannResults, std::auto_ptr< TrajAnnealingCollection > &selTrajAnn)
const T & get() const
Definition: EventSetup.h:55
T const * product() const
Definition: ESHandle.h:86
edm::EDGetTokenT< reco::BeamSpot > bsSrc_
edm::EventID id() const
Definition: EventBase.h:60
volatile std::atomic< bool > shutdown_flag false
DAFTrackProducer(const edm::ParameterSet &iConfig)
const edm::ParameterSet & getConf() const
void setup(std::vector< TH2F > &depth, std::string name, std::string units="")
tuple size
Write out results.
virtual void produce(edm::Event &, const edm::EventSetup &) override
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.