CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
MuonAssociatorEDProducer.cc
Go to the documentation of this file.
1 #include <memory>
6 
8  tracksTag(parset.getParameter< edm::InputTag >("tracksTag")),
9  tpTag(parset.getParameter< edm::InputTag >("tpTag")),
10  ignoreMissingTrackCollection(parset.getUntrackedParameter<bool>("ignoreMissingTrackCollection",false)),
11  parset_(parset)
12 {
13 
14  edm::LogVerbatim("MuonAssociatorEDProducer") << "constructing MuonAssociatorEDProducer";
15  produces<reco::RecoToSimCollection>();
16  produces<reco::SimToRecoCollection>();
17  tpToken_=consumes<TrackingParticleCollection>(tpTag);
18  tracksToken_=consumes<edm::View<reco::Track> >(tracksTag);
19 
21  LogTrace("MuonAssociatorEDProducer") << "constructing MuonAssociatorByHits" << parset_.dump();
22  edm::LogVerbatim("MuonAssociatorEDProducer") << "\n MuonAssociatorByHits will associate reco::Tracks with "<<tracksTag
23  << "\n\t\t and TrackingParticles with "<<tpTag;
24  const std::string recoTracksLabel = tracksTag.label();
25  const std::string recoTracksInstance = tracksTag.instance();
26 
27  // check and fix inconsistent input settings
28  // tracks with hits only on muon detectors
29  if (recoTracksLabel == "standAloneMuons" || recoTracksLabel == "standAloneSETMuons" ||
30  recoTracksLabel == "cosmicMuons" || recoTracksLabel == "hltL2Muons") {
31  if (parset_.getParameter<bool>("UseTracker")) {
32  edm::LogWarning("MuonAssociatorEDProducer")
33  <<"\n*** WARNING : inconsistent input tracksTag = "<<tracksTag
34  <<"\n with UseTracker = true"<<"\n ---> setting UseTracker = false ";
35  parset_.addParameter<bool>("UseTracker",false);
36  }
37  if (!parset_.getParameter<bool>("UseMuon")) {
38  edm::LogWarning("MuonAssociatorEDProducer")
39  <<"\n*** WARNING : inconsistent input tracksTag = "<<tracksTag
40  <<"\n with UseMuon = false"<<"\n ---> setting UseMuon = true ";
41  parset_.addParameter<bool>("UseMuon",true);
42  }
43  }
44  // tracks with hits only on tracker
45  if (recoTracksLabel == "generalTracks" || recoTracksLabel == "ctfWithMaterialTracksP5LHCNavigation" ||
46  recoTracksLabel == "hltL3TkTracksFromL2" ||
47  (recoTracksLabel == "hltL3Muons" && recoTracksInstance == "L2Seeded")) {
48  if (parset_.getParameter<bool>("UseMuon")) {
49  edm::LogWarning("MuonAssociatorEDProducer")
50  <<"\n*** WARNING : inconsistent input tracksTag = "<<tracksTag
51  <<"\n with UseMuon = true"<<"\n ---> setting UseMuon = false ";
52  parset_.addParameter<bool>("UseMuon",false);
53  }
54  if (!parset_.getParameter<bool>("UseTracker")) {
55  edm::LogWarning("MuonAssociatorEDProducer")
56  <<"\n*** WARNING : inconsistent input tracksTag = "<<tracksTag
57  <<"\n with UseTracker = false"<<"\n ---> setting UseTracker = true ";
58  parset_.addParameter<bool>("UseTracker",true);
59  }
60  }
61 
62  LogTrace("MuonAssociatorEDProducer") << "MuonAssociatorEDProducer::beginJob : constructing MuonAssociatorByHits";
64 
65 
66 }
67 
69 
71 }
72 
74 
76  using namespace edm;
77 
79  LogTrace("MuonAssociatorEDProducer") <<"getting TrackingParticle collection - "<<tpTag;
80  event.getByToken(tpToken_, TPCollection);
81  LogTrace("MuonAssociatorEDProducer") <<"\t... size = "<<TPCollection->size();
82 
84  LogTrace("MuonAssociatorEDProducer") <<"getting reco::Track collection - "<<tracksTag;
85  bool trackAvailable = event.getByToken (tracksToken_, trackCollection);
86  if (trackAvailable) LogTrace("MuonAssociatorEDProducer") <<"\t... size = "<<trackCollection->size();
87  else LogTrace("MuonAssociatorEDProducer") <<"\t... NOT FOUND.";
88 
89  std::auto_ptr<reco::RecoToSimCollection> rts;
90  std::auto_ptr<reco::SimToRecoCollection> str;
91 
92  if (ignoreMissingTrackCollection && !trackAvailable) {
93  //the track collection is not in the event and we're being told to ignore this.
94  //do not output anything to the event, other wise this would be considered as inefficiency.
95  LogTrace("MuonAssociatorEDProducer") << "\n ignoring missing track collection." << "\n";
96  }
97  else {
98  edm::LogVerbatim("MuonAssociatorEDProducer")
99  <<"\n >>> RecoToSim association <<< \n"
100  <<" Track collection : "
101  <<tracksTag.label()<<":"<<tracksTag.instance()<<" (size = "<<trackCollection->size()<<") \n"
102  <<" TrackingParticle collection : "
103  <<tpTag.label()<<":"<<tpTag.instance()<<" (size = "<<TPCollection->size()<<")";
104 
106 
107  edm::LogVerbatim("MuonAssociatorEDProducer")
108  <<"\n >>> SimToReco association <<< \n"
109  <<" TrackingParticle collection : "
110  <<tpTag.label()<<":"<<tpTag.instance()<<" (size = "<<TPCollection->size()<<") \n"
111  <<" Track collection : "
112  <<tracksTag.label()<<":"<<tracksTag.instance()<<" (size = "<<trackCollection->size()<<")";
113 
115 
116  rts.reset(new reco::RecoToSimCollection(recSimColl));
117  str.reset(new reco::SimToRecoCollection(simRecColl));
118 
119  event.put(rts);
120  event.put(str);
121  }
122 }
T getParameter(std::string const &) const
edm::EDGetTokenT< TrackingParticleCollection > tpToken_
MuonAssociatorEDProducer(const edm::ParameterSet &)
std::string dump(unsigned int indent=0) const
MuonAssociatorByHits * associatorByHits
ConsumesCollector consumesCollector()
Use a ConsumesCollector to gather consumes information from helper functions.
void addParameter(std::string const &name, T const &value)
Definition: ParameterSet.h:144
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)
reco::RecoToSimCollection associateRecoToSim(edm::Handle< edm::View< reco::Track > > &tCH, edm::Handle< TrackingParticleCollection > &tPCH, const edm::Event *event, const edm::EventSetup *setup) const
std::string const & label() const
Definition: InputTag.h:36
edm::EDGetTokenT< edm::View< reco::Track > > tracksToken_
virtual reco::SimToRecoCollection associateSimToReco(edm::Handle< edm::View< reco::Track > > &tCH, edm::Handle< TrackingParticleCollection > &tPCH, const edm::Event *event, const edm::EventSetup *setup) const
volatile std::atomic< bool > shutdown_flag false
std::string const & instance() const
Definition: InputTag.h:37
virtual void produce(edm::Event &, const edm::EventSetup &)