CMS 3D CMS Logo

TracksToTrajectories.cc
Go to the documentation of this file.
4 
12 
15 
19 
28 // In principle this should be anonymous namespace, but then
29 // DEFINE_FWK_MODULE() will yield compilation warnings, so using
30 // (hopefully) unique namespace instead.
31 // The point of the namespace is to not to pollute the global
32 // namespace (and symbol space).
34  struct Count {
36  //Using mutable since we want to update the value.
37  mutable std::atomic<int> theNTracks;
38  mutable std::atomic<int> theNFailures;
39  };
40 } // namespace tracksToTrajectories
41 using namespace tracksToTrajectories;
42 
43 class TracksToTrajectories : public edm::stream::EDProducer<edm::GlobalCache<Count>> {
44 public:
47 
49  ~TracksToTrajectories() override;
50 
51  static std::unique_ptr<Count> initializeGlobalCache(edm::ParameterSet const&) { return std::make_unique<Count>(); }
52 
53  // Operations
54  static void globalEndJob(Count const* iCount);
55 
57  void produce(edm::Event&, const edm::EventSetup&) override;
58 
59 private:
61  std::unique_ptr<TrackTransformerBase> theTrackTransformer;
62 };
63 
64 using namespace std;
65 using namespace edm;
66 
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 =
79  std::make_unique<TrackTransformerForGlobalCosmicMuons>(trackTransformerParam, consumesCollector());
80  else if (type == "CosmicMuonsForAlignment")
81  theTrackTransformer = std::make_unique<TrackTransformerForCosmicMuons>(trackTransformerParam, consumesCollector());
82  else {
83  throw cms::Exception("TracksToTrajectories")
84  << "The selected algorithm does not exist"
85  << "\n"
86  << "Possible choices are:"
87  << "\n"
88  << "Type = [Default, GlobalCosmicMuonsForAlignment, CosmicMuonsForAlignment]";
89  }
90 
91  produces<vector<Trajectory>>("Refitted");
92  produces<TrajTrackAssociationCollection>("Refitted");
93 }
94 
97 
99  constexpr char metname[] = "Reco|TrackingTools|TracksToTrajectories";
100 
101  auto theNFailures = iCount->theNFailures.load();
102  auto theNTracks = iCount->theNTracks.load();
103 
104  if (theNFailures != 0)
105  LogWarning(metname) << "During the refit there were " << theNFailures << " out of " << theNTracks
106  << " tracks, i.e. failure rate is: " << double(theNFailures) / theNTracks;
107  else {
108  LogTrace(metname) << "Refit of the tracks done without any failure";
109  }
110 }
111 
114 #ifdef EDM_ML_DEBUG
115  constexpr char metname[] = "Reco|TrackingTools|TracksToTrajectories";
116 #endif
117 
118  theTrackTransformer->setServices(setup);
119 
120  // Collection of Trajectory
121  auto trajectoryCollection = std::make_unique<vector<Trajectory>>();
122 
123  // Get the reference
124  RefProd<vector<Trajectory>> trajectoryCollectionRefProd = event.getRefBeforePut<vector<Trajectory>>("Refitted");
125 
126  // Get the RecTrack collection from the event
128  event.getByToken(theTracksToken, tracks);
129 
130  // Association map between Trajectory and Track
131  auto trajTrackMap = std::make_unique<TrajTrackAssociationCollection>(trajectoryCollectionRefProd, tracks);
132 
133  Ref<vector<Trajectory>>::key_type trajectoryIndex = 0;
134  reco::TrackRef::key_type trackIndex = 0;
135 
136  // Loop over the Rec tracks
137  for (auto const& newTrack : *tracks) {
138  ++(globalCache()->theNTracks);
139 
140  auto const& trajectoriesSM = theTrackTransformer->transform(newTrack);
141 
142  if (!trajectoriesSM.empty()) {
143  // Load the trajectory in the Trajectory Container
144  trajectoryCollection->push_back(trajectoriesSM.front());
145 
146  // Make the association between the Trajectory and the original Track
147  trajTrackMap->insert(Ref<vector<Trajectory>>(trajectoryCollectionRefProd, trajectoryIndex++),
148  reco::TrackRef(tracks, trackIndex++));
149  } else {
150  LogTrace(metname) << "Error in the Track refitting. This should not happen";
151  ++(globalCache()->theNFailures);
152  }
153  }
154  LogTrace(metname) << "Load the Trajectory Collection";
155  event.put(std::move(trajectoryCollection), "Refitted");
156  event.put(std::move(trajTrackMap), "Refitted");
157 }
158 
T getParameter(std::string const &) const
Definition: ParameterSet.h:307
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
ParameterSet const & parameterSet(StableProvenance const &provenance, ProcessHistory const &history)
Definition: Provenance.cc:11
#define LogTrace(id)
TracksToTrajectories(const edm::ParameterSet &, const Count *)
Constructor.
std::unique_ptr< TrackTransformerBase > theTrackTransformer
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:16
~TracksToTrajectories() override
Destructor.
void produce(edm::Event &, const edm::EventSetup &) override
Convert a reco::TrackCollection into std::vector<Trajectory>
static void globalEndJob(Count const *iCount)
HLT enums.
static std::unique_ptr< Count > initializeGlobalCache(edm::ParameterSet const &)
Log< level::Warning, false > LogWarning
def move(src, dest)
Definition: eostools.py:511
Definition: event.py:1