CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
List of all members | Public Member Functions | Private Member Functions | Private Attributes
RecoTrackAccumulator Class Reference

#include <RecoTrackAccumulator.h>

Inheritance diagram for RecoTrackAccumulator:
DigiAccumulatorMixMod

Public Member Functions

void accumulate (edm::Event const &e, edm::EventSetup const &c) override
 
void accumulate (PileUpEventPrincipal const &e, edm::EventSetup const &c, edm::StreamID const &) override
 
void finalizeEvent (edm::Event &e, edm::EventSetup const &c) override
 
void initializeEvent (edm::Event const &e, edm::EventSetup const &c) override
 
 RecoTrackAccumulator (const edm::ParameterSet &conf, edm::ProducesCollector, edm::ConsumesCollector &iC)
 
 ~RecoTrackAccumulator () override
 
- Public Member Functions inherited from DigiAccumulatorMixMod
virtual void beginLuminosityBlock (edm::LuminosityBlock const &lumi, edm::EventSetup const &setup)
 
virtual void beginRun (edm::Run const &run, edm::EventSetup const &setup)
 
 DigiAccumulatorMixMod ()
 
 DigiAccumulatorMixMod (DigiAccumulatorMixMod const &)=delete
 
virtual void endLuminosityBlock (edm::LuminosityBlock const &lumi, edm::EventSetup const &setup)
 
virtual void endRun (edm::Run const &run, edm::EventSetup const &setup)
 
virtual void finalizeBunchCrossing (edm::Event &event, edm::EventSetup const &setup, int bunchCrossing)
 
virtual PileupMixingContentgetEventPileupInfo ()
 
virtual void initializeBunchCrossing (edm::Event const &event, edm::EventSetup const &setup, int bunchCrossing)
 
DigiAccumulatorMixMod const & operator= (DigiAccumulatorMixMod const &)=delete
 
virtual void StorePileupInformation (std::vector< int > &numInteractionList, std::vector< int > &bunchCrossingList, std::vector< float > &TrueInteractionList, std::vector< edm::EventID > &eventList, int bunchSpace)
 
virtual ~DigiAccumulatorMixMod ()
 

Private Member Functions

template<class T >
void accumulateEvent (const T &e, edm::EventSetup const &c, const edm::InputTag &label)
 

Private Attributes

std::unique_ptr
< TrackingRecHitCollection
newHits_
 
std::unique_ptr
< reco::TrackExtraCollection
newTrackExtras_
 
std::unique_ptr
< reco::TrackCollection
newTracks_
 
std::string outputLabel
 
edm::InputTag pileUpTracksTag
 
TrackingRecHitRefProd rNewHits
 
reco::TrackExtraRefProd rNewTrackExtras
 
reco::TrackRefProd rNewTracks
 
edm::InputTag signalTracksTag
 

Detailed Description

RecoTrackAccumulator accumulates generalTracks from the hard and the pileup events

Author
Andrea Giammanco
Version
Mar 11 2013

Definition at line 33 of file RecoTrackAccumulator.h.

Constructor & Destructor Documentation

RecoTrackAccumulator::RecoTrackAccumulator ( const edm::ParameterSet conf,
edm::ProducesCollector  producesCollector,
edm::ConsumesCollector iC 
)
explicit

Definition at line 10 of file RecoTrackAccumulator.cc.

References edm::ConsumesCollector::consumes(), outputLabel, edm::ProducesCollector::produces(), and signalTracksTag.

13  : signalTracksTag(conf.getParameter<edm::InputTag>("signalTracks")),
14  pileUpTracksTag(conf.getParameter<edm::InputTag>("pileUpTracks")),
15  outputLabel(conf.getParameter<std::string>("outputLabel")) {
16  producesCollector.produces<reco::TrackCollection>(outputLabel);
17  producesCollector.produces<TrackingRecHitCollection>(outputLabel);
19 
23 }
EDGetTokenT< ProductType > consumes(edm::InputTag const &tag)
ProductRegistryHelper::BranchAliasSetterT< ProductType > produces()
std::vector< Track > TrackCollection
collection of Tracks
Definition: TrackFwd.h:14
std::vector< TrackExtra > TrackExtraCollection
collection of TrackExtra objects
Definition: TrackExtraFwd.h:10
T getParameter(std::string const &) const
Definition: ParameterSet.h:303
RecoTrackAccumulator::~RecoTrackAccumulator ( )
override

Definition at line 25 of file RecoTrackAccumulator.cc.

25 {}

Member Function Documentation

void RecoTrackAccumulator::accumulate ( edm::Event const &  e,
edm::EventSetup const &  c 
)
overridevirtual

Implements DigiAccumulatorMixMod.

Definition at line 38 of file RecoTrackAccumulator.cc.

References accumulateEvent(), and signalTracksTag.

38  {
40 }
void accumulateEvent(const T &e, edm::EventSetup const &c, const edm::InputTag &label)
void RecoTrackAccumulator::accumulate ( PileUpEventPrincipal const &  e,
edm::EventSetup const &  c,
edm::StreamID const &   
)
overridevirtual

Implements DigiAccumulatorMixMod.

Definition at line 42 of file RecoTrackAccumulator.cc.

References accumulateEvent(), PileUpEventPrincipal::bunchCrossing(), and pileUpTracksTag.

44  {
45  if (e.bunchCrossing() == 0) {
47  }
48 }
void accumulateEvent(const T &e, edm::EventSetup const &c, const edm::InputTag &label)
template<class T >
void RecoTrackAccumulator::accumulateEvent ( const T e,
edm::EventSetup const &  c,
const edm::InputTag label 
)
private

Definition at line 57 of file RecoTrackAccumulator.cc.

References cms::cuda::assert(), Exception, reco::Track::extra(), mps_fire::i, edm::HandleBase::isValid(), edm::Ref< C, T, F >::key(), newHits_, newTrackExtras_, newTracks_, rNewHits, rNewTrackExtras, submitPVValidationJobs::t, HLT_FULL_cff::track, and tracks.

Referenced by accumulate().

57  {
61  e.getByLabel(label, tracks);
62  e.getByLabel(label, hits);
63  e.getByLabel(label, trackExtras);
64 
65  if (!tracks.isValid()) {
66  throw cms::Exception("RecoTrackAccumulator")
67  << "Failed to find track collections with inputTag " << label << std::endl;
68  }
69  if (!hits.isValid()) {
70  throw cms::Exception("RecoTrackAccumulator")
71  << "Failed to find hit collections with inputTag " << label << std::endl;
72  }
73  if (!trackExtras.isValid()) {
74  throw cms::Exception("RecoTrackAccumulator")
75  << "Failed to find trackExtra collections with inputTag " << label << std::endl;
76  }
77 
78  for (size_t t = 0; t < tracks->size(); ++t) {
79  const reco::Track& track = (*tracks)[t];
80  newTracks_->push_back(track);
81  // track extras:
82  auto const& extra = trackExtras->at(track.extra().key());
83  newTrackExtras_->emplace_back(extra.outerPosition(),
84  extra.outerMomentum(),
85  extra.outerOk(),
86  extra.innerPosition(),
87  extra.innerMomentum(),
88  extra.innerOk(),
89  extra.outerStateCovariance(),
90  extra.outerDetId(),
91  extra.innerStateCovariance(),
92  extra.innerDetId(),
93  extra.seedDirection(),
94  //If TrajectorySeeds are needed, then their list must be gotten from the
95  // secondary event directly and looked up similarly to TrackExtras.
96  //We can't use a default constructed RefToBase due to a bug in RefToBase
97  // which causes an seg fault when calling isAvailable on a default constructed one.
99  newTracks_->back().setExtra(reco::TrackExtraRef(rNewTrackExtras, newTracks_->size() - 1));
100  // rechits:
101  // note: extra.recHit(i) does not work for pileup events
102  // probably the Ref does not know its product id applies on a pileup event
103  auto& newExtra = newTrackExtras_->back();
104  auto const firstTrackIndex = newHits_->size();
105  for (unsigned int i = 0; i < extra.recHitsSize(); i++) {
106  newHits_->push_back((*hits)[extra.recHit(i).key()]);
107  }
108  newExtra.setHits(rNewHits, firstTrackIndex, newHits_->size() - firstTrackIndex);
109  newExtra.setTrajParams(extra.trajParams(), extra.chi2sX5());
110  assert(newExtra.recHitsSize() == newExtra.trajParams().size());
111  }
112 }
const TrackExtraRef & extra() const
reference to &quot;extra&quot; object
Definition: Track.h:139
auto const & tracks
cannot be loose
key_type key() const
Accessor for product key.
Definition: Ref.h:250
assert(be >=bs)
std::unique_ptr< reco::TrackCollection > newTracks_
TrackingRecHitRefProd rNewHits
std::unique_ptr< reco::TrackExtraCollection > newTrackExtras_
bool isValid() const
Definition: HandleBase.h:70
std::unique_ptr< TrackingRecHitCollection > newHits_
reco::TrackExtraRefProd rNewTrackExtras
void RecoTrackAccumulator::finalizeEvent ( edm::Event e,
edm::EventSetup const &  c 
)
overridevirtual

Implements DigiAccumulatorMixMod.

Definition at line 50 of file RecoTrackAccumulator.cc.

References eostools::move(), newHits_, newTrackExtras_, newTracks_, outputLabel, and edm::Event::put().

50  {
54 }
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
Definition: Event.h:133
std::unique_ptr< reco::TrackCollection > newTracks_
def move
Definition: eostools.py:511
std::unique_ptr< reco::TrackExtraCollection > newTrackExtras_
std::unique_ptr< TrackingRecHitCollection > newHits_
void RecoTrackAccumulator::initializeEvent ( edm::Event const &  e,
edm::EventSetup const &  c 
)
overridevirtual

Implements DigiAccumulatorMixMod.

Definition at line 27 of file RecoTrackAccumulator.cc.

References alignCSCRings::e, newHits_, newTrackExtras_, newTracks_, outputLabel, rNewHits, rNewTrackExtras, and rNewTracks.

27  {
28  newTracks_ = std::make_unique<reco::TrackCollection>();
29  newHits_ = std::make_unique<TrackingRecHitCollection>();
30  newTrackExtras_ = std::make_unique<reco::TrackExtraCollection>();
31 
32  // this is needed to get the ProductId of the TrackExtra and TrackingRecHit and Track collections
33  rNewTracks = const_cast<edm::Event&>(e).getRefBeforePut<reco::TrackCollection>(outputLabel);
34  rNewTrackExtras = const_cast<edm::Event&>(e).getRefBeforePut<reco::TrackExtraCollection>(outputLabel);
35  rNewHits = const_cast<edm::Event&>(e).getRefBeforePut<TrackingRecHitCollection>(outputLabel);
36 }
std::unique_ptr< reco::TrackCollection > newTracks_
TrackingRecHitRefProd rNewHits
std::unique_ptr< reco::TrackExtraCollection > newTrackExtras_
reco::TrackRefProd rNewTracks
std::unique_ptr< TrackingRecHitCollection > newHits_
reco::TrackExtraRefProd rNewTrackExtras

Member Data Documentation

std::unique_ptr<TrackingRecHitCollection> RecoTrackAccumulator::newHits_
private

Definition at line 49 of file RecoTrackAccumulator.h.

Referenced by accumulateEvent(), finalizeEvent(), and initializeEvent().

std::unique_ptr<reco::TrackExtraCollection> RecoTrackAccumulator::newTrackExtras_
private

Definition at line 48 of file RecoTrackAccumulator.h.

Referenced by accumulateEvent(), finalizeEvent(), and initializeEvent().

std::unique_ptr<reco::TrackCollection> RecoTrackAccumulator::newTracks_
private

Definition at line 47 of file RecoTrackAccumulator.h.

Referenced by accumulateEvent(), finalizeEvent(), and initializeEvent().

std::string RecoTrackAccumulator::outputLabel
private

Definition at line 58 of file RecoTrackAccumulator.h.

Referenced by finalizeEvent(), initializeEvent(), and RecoTrackAccumulator().

edm::InputTag RecoTrackAccumulator::pileUpTracksTag
private

Definition at line 56 of file RecoTrackAccumulator.h.

Referenced by accumulate().

TrackingRecHitRefProd RecoTrackAccumulator::rNewHits
private

Definition at line 53 of file RecoTrackAccumulator.h.

Referenced by accumulateEvent(), and initializeEvent().

reco::TrackExtraRefProd RecoTrackAccumulator::rNewTrackExtras
private

Definition at line 52 of file RecoTrackAccumulator.h.

Referenced by accumulateEvent(), and initializeEvent().

reco::TrackRefProd RecoTrackAccumulator::rNewTracks
private

Definition at line 51 of file RecoTrackAccumulator.h.

Referenced by initializeEvent().

edm::InputTag RecoTrackAccumulator::signalTracksTag
private

Definition at line 55 of file RecoTrackAccumulator.h.

Referenced by accumulate(), and RecoTrackAccumulator().