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 | Static Public Member Functions | Private Attributes
TracksToTrajectories Class Reference
Inheritance diagram for TracksToTrajectories:
edm::stream::EDProducer< edm::GlobalCache< Count > >

Public Member Functions

void produce (edm::Event &, const edm::EventSetup &) override
 Convert a reco::TrackCollection into std::vector<Trajectory> More...
 
 TracksToTrajectories (const edm::ParameterSet &, const Count *)
 Constructor. More...
 
 ~TracksToTrajectories () override
 Destructor. More...
 
- Public Member Functions inherited from edm::stream::EDProducer< edm::GlobalCache< Count > >
 EDProducer ()=default
 
 EDProducer (const EDProducer &)=delete
 
bool hasAbilityToProduceInBeginLumis () const final
 
bool hasAbilityToProduceInBeginProcessBlocks () const final
 
bool hasAbilityToProduceInBeginRuns () const final
 
bool hasAbilityToProduceInEndLumis () const final
 
bool hasAbilityToProduceInEndProcessBlocks () const final
 
bool hasAbilityToProduceInEndRuns () const final
 
const EDProduceroperator= (const EDProducer &)=delete
 

Static Public Member Functions

static void globalEndJob (Count const *iCount)
 
static std::unique_ptr< CountinitializeGlobalCache (edm::ParameterSet const &)
 

Private Attributes

edm::EDGetTokenT
< reco::TrackCollection
theTracksToken
 
std::unique_ptr
< TrackTransformerBase
theTrackTransformer
 

Additional Inherited Members

- Public Types inherited from edm::stream::EDProducer< edm::GlobalCache< Count > >
using CacheTypes = CacheContexts< T...>
 
using GlobalCache = typename CacheTypes::GlobalCache
 
using HasAbility = AbilityChecker< T...>
 
using InputProcessBlockCache = typename CacheTypes::InputProcessBlockCache
 
using LuminosityBlockCache = typename CacheTypes::LuminosityBlockCache
 
using LuminosityBlockContext = LuminosityBlockContextT< LuminosityBlockCache, RunCache, GlobalCache >
 
using LuminosityBlockSummaryCache = typename CacheTypes::LuminosityBlockSummaryCache
 
using RunCache = typename CacheTypes::RunCache
 
using RunContext = RunContextT< RunCache, GlobalCache >
 
using RunSummaryCache = typename CacheTypes::RunSummaryCache
 

Detailed Description

This class, which is a EDProducer, takes a reco::TrackCollection from the Event and refits the rechits strored in the reco::Tracks. The final result is a std::vector of Trajectories (objs of the type "Trajectory"), which is loaded into the Event in a transient way

Author
R. Bellan - INFN Torino ricca.nosp@m.rdo..nosp@m.bella.nosp@m.n@ce.nosp@m.rn.ch

Definition at line 43 of file TracksToTrajectories.cc.

Constructor & Destructor Documentation

TracksToTrajectories::TracksToTrajectories ( const edm::ParameterSet parameterSet,
const Count  
)

Constructor.

Definition at line 68 of file TracksToTrajectories.cc.

References Exception, and edm::ParameterSet::getParameter().

68  {
69  theTracksToken = consumes<reco::TrackCollection>(parameterSet.getParameter<InputTag>("Tracks"));
70 
71  ParameterSet trackTransformerParam = parameterSet.getParameter<ParameterSet>("TrackTransformer");
72 
73  string type = parameterSet.getParameter<string>("Type");
74 
75  if (type == "Default")
76  theTrackTransformer = std::make_unique<TrackTransformer>(trackTransformerParam, consumesCollector());
77  else if (type == "GlobalCosmicMuonsForAlignment")
78  theTrackTransformer = std::make_unique<TrackTransformerForGlobalCosmicMuons>(trackTransformerParam);
79  else if (type == "CosmicMuonsForAlignment")
80  theTrackTransformer = std::make_unique<TrackTransformerForCosmicMuons>(trackTransformerParam);
81  else {
82  throw cms::Exception("TracksToTrajectories")
83  << "The selected algorithm does not exist"
84  << "\n"
85  << "Possible choices are:"
86  << "\n"
87  << "Type = [Default, GlobalCosmicMuonsForAlignment, CosmicMuonsForAlignment]";
88  }
89 
90  produces<vector<Trajectory>>("Refitted");
91  produces<TrajTrackAssociationCollection>("Refitted");
92 }
edm::EDGetTokenT< reco::TrackCollection > theTracksToken
std::unique_ptr< TrackTransformerBase > theTrackTransformer
T getParameter(std::string const &) const
Definition: ParameterSet.h:303
TracksToTrajectories::~TracksToTrajectories ( )
override

Destructor.

Definition at line 95 of file TracksToTrajectories.cc.

95 {}

Member Function Documentation

void TracksToTrajectories::globalEndJob ( Count const *  iCount)
static

Definition at line 97 of file TracksToTrajectories.cc.

References LogTrace, metname, tracksToTrajectories::Count::theNFailures, and tracksToTrajectories::Count::theNTracks.

97  {
98  constexpr char metname[] = "Reco|TrackingTools|TracksToTrajectories";
99 
100  auto theNFailures = iCount->theNFailures.load();
101  auto theNTracks = iCount->theNTracks.load();
102 
103  if (theNFailures != 0)
104  LogWarning(metname) << "During the refit there were " << theNFailures << " out of " << theNTracks
105  << " tracks, i.e. failure rate is: " << double(theNFailures) / theNTracks;
106  else {
107  LogTrace(metname) << "Refit of the tracks done without any failure";
108  }
109 }
const std::string metname
#define LogTrace(id)
Log< level::Warning, false > LogWarning
static std::unique_ptr<Count> TracksToTrajectories::initializeGlobalCache ( edm::ParameterSet const &  )
inlinestatic

Definition at line 51 of file TracksToTrajectories.cc.

51 { return std::make_unique<Count>(); }
void TracksToTrajectories::produce ( edm::Event event,
const edm::EventSetup setup 
)
override

Convert a reco::TrackCollection into std::vector<Trajectory>

Convert Tracks into Trajectories.

Definition at line 112 of file TracksToTrajectories.cc.

References LogTrace, metname, eostools::move(), and tracks.

112  {
113 #ifdef EDM_ML_DEBUG
114  constexpr char metname[] = "Reco|TrackingTools|TracksToTrajectories";
115 #endif
116 
117  theTrackTransformer->setServices(setup);
118 
119  // Collection of Trajectory
120  auto trajectoryCollection = std::make_unique<vector<Trajectory>>();
121 
122  // Get the reference
123  RefProd<vector<Trajectory>> trajectoryCollectionRefProd = event.getRefBeforePut<vector<Trajectory>>("Refitted");
124 
125  // Get the RecTrack collection from the event
127  event.getByToken(theTracksToken, tracks);
128 
129  // Association map between Trajectory and Track
130  auto trajTrackMap = std::make_unique<TrajTrackAssociationCollection>(trajectoryCollectionRefProd, tracks);
131 
132  Ref<vector<Trajectory>>::key_type trajectoryIndex = 0;
133  reco::TrackRef::key_type trackIndex = 0;
134 
135  // Loop over the Rec tracks
136  for (auto const& newTrack : *tracks) {
137  ++(globalCache()->theNTracks);
138 
139  auto const& trajectoriesSM = theTrackTransformer->transform(newTrack);
140 
141  if (!trajectoriesSM.empty()) {
142  // Load the trajectory in the Trajectory Container
143  trajectoryCollection->push_back(trajectoriesSM.front());
144 
145  // Make the association between the Trajectory and the original Track
146  trajTrackMap->insert(Ref<vector<Trajectory>>(trajectoryCollectionRefProd, trajectoryIndex++),
147  reco::TrackRef(tracks, trackIndex++));
148  } else {
149  LogTrace(metname) << "Error in the Track refitting. This should not happen";
150  ++(globalCache()->theNFailures);
151  }
152  }
153  LogTrace(metname) << "Load the Trajectory Collection";
154  event.put(move(trajectoryCollection), "Refitted");
155  event.put(move(trajTrackMap), "Refitted");
156 }
std::remove_cv< typename std::remove_reference< argument_type >::type >::type key_type
Definition: Ref.h:164
const std::string metname
edm::EDGetTokenT< reco::TrackCollection > theTracksToken
auto const & tracks
cannot be loose
#define LogTrace(id)
def move
Definition: eostools.py:511
std::unique_ptr< TrackTransformerBase > theTrackTransformer

Member Data Documentation

edm::EDGetTokenT<reco::TrackCollection> TracksToTrajectories::theTracksToken
private

Definition at line 60 of file TracksToTrajectories.cc.

std::unique_ptr<TrackTransformerBase> TracksToTrajectories::theTrackTransformer
private

Definition at line 61 of file TracksToTrajectories.cc.