CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
L2MuonCandidateProducer.cc
Go to the documentation of this file.
1 
18 // Framework
25 
27 
28 // Input and output collections
31 
32 #include <string>
33 
34 using namespace edm;
35 using namespace std;
36 using namespace reco;
37 
40  LogTrace("Muon|RecoMuon|L2MuonCandidateProducer")<<" constructor called";
41 
42  // StandAlone Collection Label
43  theSACollectionLabel = parameterSet.getParameter<InputTag>("InputObjects");
44  tracksToken = consumes<reco::TrackCollection>(theSACollectionLabel);
45  produces<RecoChargedCandidateCollection>();
46 }
47 
50  LogTrace("Muon|RecoMuon|L2MuonCandidateProducer")<<" L2MuonCandidateProducer destructor called";
51 }
52 
53 
56  const string metname = "Muon|RecoMuon|L2MuonCandidateProducer";
57 
58  // Take the SA container
59  LogTrace(metname)<<" Taking the StandAlone muons: "<<theSACollectionLabel;
61  event.getByToken(tracksToken,tracks);
62 
63  // Create a RecoChargedCandidate collection
64  LogTrace(metname)<<" Creating the RecoChargedCandidate collection";
65  auto_ptr<RecoChargedCandidateCollection> candidates( new RecoChargedCandidateCollection());
66 
67  for (unsigned int i=0; i<tracks->size(); i++) {
68  TrackRef tkref(tracks,i);
69  Particle::Charge q = tkref->charge();
70  Particle::LorentzVector p4(tkref->px(), tkref->py(), tkref->pz(), tkref->p());
71  Particle::Point vtx(tkref->vx(),tkref->vy(), tkref->vz());
72  int pid = 13;
73  if(abs(q)==1) pid = q < 0 ? 13 : -13;
74  else LogWarning(metname) << "L2MuonCandidate has charge = "<<q;
75  RecoChargedCandidate cand(q, p4, vtx, pid);
76  cand.setTrack(tkref);
77  candidates->push_back(cand);
78  }
79 
80  event.put(candidates);
81 
82  LogTrace(metname)<<" Event loaded"
83  <<"================================";
84 }
T getParameter(std::string const &) const
int i
Definition: DBlmapReader.cc:9
const std::string metname
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
L2MuonCandidateProducer(const edm::ParameterSet &)
constructor with config
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
#define LogTrace(id)
std::vector< RecoChargedCandidate > RecoChargedCandidateCollection
collectin of RecoChargedCandidate objects
tuple tracks
Definition: testEve_cfg.py:39
tuple pid
Definition: sysUtil.py:22
virtual ~L2MuonCandidateProducer()
destructor
virtual void produce(edm::Event &, const edm::EventSetup &)
produce candidates
void setTrack(const reco::TrackRef &r)
set reference to track
ParameterSet const & parameterSet(Provenance const &provenance)
Definition: Provenance.cc:11
math::PtEtaPhiELorentzVectorF LorentzVector