CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
L3MuonCandidateProducer.cc
Go to the documentation of this file.
1 
18 // Framework
24 
26 
27 
29 
30 // Input and output collections
33 
34 #include <string>
35 #include <algorithm>
36 
37 using namespace edm;
38 using namespace std;
39 using namespace reco;
40 
41 static const char category[] = "Muon|RecoMuon|L3MuonCandidateProducer";
42 
45  LogTrace(category)<<" constructor called";
46 
47  // StandAlone Collection Label
48  theL3CollectionLabel = parameterSet.getParameter<InputTag>("InputObjects");
49  trackToken_ = consumes<reco::TrackCollection>(theL3CollectionLabel);
50 
51  // use links
52  theUseLinks = parameterSet.existsAs<InputTag>("InputLinksObjects");
53  if (theUseLinks) {
54  theL3LinksLabel = parameterSet.getParameter<InputTag>("InputLinksObjects");
55  linkToken_ = consumes<reco::MuonTrackLinksCollection>(theL3LinksLabel);
56  if (theL3LinksLabel.label() == "" or theL3LinksLabel.label() == "unused")
57  theUseLinks = false;
58  }
59 
60  // use global, standalone or tracker pT/4-vector assignment
61  const std::string & muon_track_for_momentum = parameterSet.existsAs<std::string>("MuonPtOption") ? parameterSet.getParameter<std::string>("MuonPtOption") : "Global";
62  if (muon_track_for_momentum == std::string("Tracker"))
63  theType=InnerTrack;
64  else if (muon_track_for_momentum == std::string("Standalone"))
65  theType=OuterTrack;
66  else if (muon_track_for_momentum == std::string("Global"))
67  theType=CombinedTrack;
68  else {
69  LogError(category)<<"invalid value for MuonPtOption, please choose among 'Tracker', 'Standalone', 'Global'";
70  theType=CombinedTrack;
71  }
72 
73  produces<RecoChargedCandidateCollection>();
74 }
75 
78  LogTrace(category)<<" L3MuonCandidateProducer destructor called";
79 }
80 
81 
84  // Take the L3 container
85  LogTrace(category)<<" Taking the L3/GLB muons: "<<theL3CollectionLabel.label();
87  event.getByToken(trackToken_,tracks);
88 
90  if (theUseLinks)
91  event.getByToken(linkToken_, links);
92 
93  // Create a RecoChargedCandidate collection
94  LogTrace(category)<<" Creating the RecoChargedCandidate collection";
95  auto_ptr<RecoChargedCandidateCollection> candidates( new RecoChargedCandidateCollection());
96  LogDebug(category) << " size = " << tracks->size();
97  for (unsigned int i=0; i<tracks->size(); i++) {
98  TrackRef inRef(tracks,i);
99  TrackRef tkRef = TrackRef();
100 
101  if (theUseLinks) {
102  for(reco::MuonTrackLinksCollection::const_iterator link = links->begin();
103  link != links->end(); ++link){ LogDebug(category) << " i = " << i;
104 
105  if (not link->trackerTrack().isNull()) LogTrace(category) << " link tk pt " << link->trackerTrack()->pt();
106  if (not link->standAloneTrack().isNull()) LogTrace(category) << " sta pt " << link->standAloneTrack()->pt();
107  if (not link->globalTrack().isNull()) LogTrace(category) << " global pt " << link->globalTrack()->pt();
108  if (not inRef.isNull()) LogTrace(category) << " inRef pt " << inRef->pt();
109 
110  if (link->globalTrack().isNull()) {
111  edm::LogError(category) << "null reference to the global track";
112  // skip this candidate
113  continue;
114  }
115 
116  float dR = deltaR(inRef->eta(),inRef->phi(),link->globalTrack()->eta(),link->globalTrack()->phi());
117  float dPt = abs(inRef->pt() - link->globalTrack()->pt())/inRef->pt();
118  if (dR < 0.02 and dPt < 0.001) {
119  LogTrace(category) << " *** pt matches *** ";
120  switch(theType) {
121  case InnerTrack: tkRef = link->trackerTrack(); break;
122  case OuterTrack: tkRef = link->standAloneTrack(); break;
123  case CombinedTrack: tkRef = link->globalTrack(); break;
124  default: tkRef = link->globalTrack(); break;
125  }
126  }
127  }
128  if (tkRef.isNull()) {
129  edm::LogWarning(category) << "null reference to the linked track, reverting to old behaviour";
130  tkRef = inRef;
131  }
132  } else {
133  // theUseLinks is false
134  tkRef = inRef;
135  }
136  LogDebug(category) << "tkRef Used For Momentum pt " << tkRef->pt() << " inRef from the input collection pt " << inRef->pt();
137 
138  Particle::Charge q = tkRef->charge();
139  Particle::LorentzVector p4(tkRef->px(), tkRef->py(), tkRef->pz(), tkRef->p());
140  Particle::Point vtx(tkRef->vx(),tkRef->vy(), tkRef->vz());
141 
142  int pid = 13;
143  if(abs(q)==1) pid = q < 0 ? 13 : -13;
144  else LogWarning(category) << "L3MuonCandidate has charge = "<<q;
145  RecoChargedCandidate cand(q, p4, vtx, pid);
146 
147  //set the inRef as the RecoChargedCandidate ref so that the isolation maps
148  //work in downstream filters
149  cand.setTrack(inRef);
150  candidates->push_back(cand);
151  }
152 
153  event.put(candidates);
154 
155  LogTrace(category)<<" Event loaded"
156  <<"================================";
157 }
158 
#define LogDebug(id)
T getParameter(std::string const &) const
int i
Definition: DBlmapReader.cc:9
bool existsAs(std::string const &parameterName, bool trackiness=true) const
checks if a parameter exists as a given type
Definition: ParameterSet.h:185
The Signals That Services Can Subscribe To This is based on ActivityRegistry and is current per Services can connect to the signals distributed by the ActivityRegistry in order to monitor the activity of the application Each possible callback has some defined which we here list in angle e< void, edm::EventIDconst &, edm::Timestampconst & > We also list in braces which AR_WATCH_USING_METHOD_ is used for those or
Definition: Activities.doc:12
static const char category[]
L3MuonCandidateProducer(const edm::ParameterSet &)
constructor with config
std::pair< double, double > Point
Definition: CaloEllipse.h:18
double p4[4]
Definition: TauolaWrapper.h:92
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
virtual ~L3MuonCandidateProducer()
destructor
How EventSelector::AcceptEvent() decides whether to accept an event for output otherwise it is excluding the probing of A single or multiple positive and the trigger will pass if any such matching triggers are PASS or EXCEPTION[A criterion thatmatches no triggers at all is detected and causes a throw.] A single negative with an expectation of appropriate bit checking in the decision and the trigger will pass if any such matching triggers are FAIL or EXCEPTION A wildcarded negative criterion that matches more than one trigger in the trigger but the state exists so we define the behavior If all triggers are the negative crieriion will lead to accepting the event(this again matches the behavior of"!*"before the partial wildcard feature was incorporated).The per-event"cost"of each negative criterion with multiple relevant triggers is about the same as!*was in the past
bool isNull() const
Checks for null.
Definition: Ref.h:247
#define LogTrace(id)
double deltaR(double eta1, double eta2, double phi1, double phi2)
Definition: TreeUtility.cc:17
std::vector< RecoChargedCandidate > RecoChargedCandidateCollection
collectin of RecoChargedCandidate objects
tuple tracks
Definition: testEve_cfg.py:39
edm::Ref< TrackCollection > TrackRef
persistent reference to a Track
Definition: TrackFwd.h:19
tuple pid
Definition: sysUtil.py:22
void setTrack(const reco::TrackRef &r)
set reference to track
virtual void produce(edm::StreamID, edm::Event &, const edm::EventSetup &) const override
produce candidates
ParameterSet const & parameterSet(Provenance const &provenance)
Definition: Provenance.cc:11
math::PtEtaPhiELorentzVectorF LorentzVector