CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
MuIsoDepositProducer.cc
Go to the documentation of this file.
2 
3 // Framework
9 
11 
18 
19 
22 
25 
27 #include <string>
28 
29 using namespace edm;
30 using namespace std;
31 using namespace reco;
32 using namespace muonisolation;
33 
34 
37  theConfig(par),
38  theDepositNames(std::vector<std::string>(1,std::string())),
39  theExtractor(0)
40 {
41  LogDebug("RecoMuon|MuonIsolation")<<" MuIsoDepositProducer CTOR";
42 
43  edm::ParameterSet ioPSet = par.getParameter<edm::ParameterSet>("IOPSet");
44 
45  theInputType = ioPSet.getParameter<std::string>("InputType");
46  theExtractForCandidate = ioPSet.getParameter<bool>("ExtractForCandidate");
47  theMuonTrackRefType = ioPSet.getParameter<std::string>("MuonTrackRefType");
48  theMuonCollectionTag = ioPSet.getParameter<edm::InputTag>("inputMuonCollection");
49  theMultipleDepositsFlag = ioPSet.getParameter<bool>("MultipleDepositsFlag");
50 
51 
52 
53  if (theMultipleDepositsFlag){
54  theDepositNames = par.getParameter<edm::ParameterSet>("ExtractorPSet")
55  .getParameter<std::vector<std::string> >("DepositInstanceLabels");
56  }
57 
58  for (unsigned int i = 0; i < theDepositNames.size(); ++i){
60  if (theDepositNames[i] != "") alias += "_" + theDepositNames[i];
61  produces<reco::IsoDepositMap>(theDepositNames[i]).setBranchAlias(alias);
62  }
63 
64  if (!theExtractor) {
65  edm::ParameterSet extractorPSet = theConfig.getParameter<edm::ParameterSet>("ExtractorPSet");
66  std::string extractorName = extractorPSet.getParameter<std::string>("ComponentName");
67  theExtractor = IsoDepositExtractorFactory::get()->create( extractorName, extractorPSet, consumesCollector());
68  LogDebug(metname)<<" Load extractor..."<<extractorName;
69  }
70 
71 
72 }
73 
76  LogDebug("RecoMuon/MuIsoDepositProducer")<<" MuIsoDepositProducer DTOR";
77  delete theExtractor;
78 }
79 
82  std::string metname = "RecoMuon|MuonIsolationProducers|MuIsoDepositProducer";
83 
84  LogDebug(metname)<<" Muon Deposit producing..."
85  <<" BEGINING OF EVENT " <<"================================";
86 
87  unsigned int nDeps = theMultipleDepositsFlag ? theDepositNames.size() : 1;
88 
89 
90 
91  // Take the muon container
92  LogTrace(metname)<<" Taking the muons: "<<theMuonCollectionTag;
96  Handle<View<Candidate> > cands;
97 
98  unsigned int nMuons = 0;
99 
100  bool readFromRecoTrack = theInputType == "TrackCollection";
101  bool readFromRecoMuon = theInputType == "MuonCollection";
102  bool readFromCandidateView = theInputType == "CandidateView";
103 
104  if (readFromRecoMuon){
105  event.getByLabel(theMuonCollectionTag,muons);
106  nMuons = muons->size();
107  LogDebug(metname) <<"Got Muons of size "<<nMuons;
108 
109  }
110  if (readFromRecoTrack){
111  event.getByLabel(theMuonCollectionTag,tracks);
112  nMuons = tracks->size();
113  LogDebug(metname) <<"Got MuonTracks of size "<<nMuons;
114  }
115  if (readFromCandidateView || theExtractForCandidate){
116  event.getByLabel(theMuonCollectionTag,cands);
117  unsigned int nCands = cands->size();
118  if (readFromRecoMuon && theExtractForCandidate){
120  if (nMuons != nCands) edm::LogError(metname)<<"Inconsistent configuration or failure to read Candidate-muon view";
121  }
122  nMuons = nCands;
123  LogDebug(metname)<< "Got candidate view with size "<<nMuons;
124  }
125 
126  static const unsigned int MAX_DEPS=10;
127  std::auto_ptr<reco::IsoDepositMap> depMaps[MAX_DEPS];
128 
129  if (nDeps >10 ) LogError(metname)<<"Unable to handle more than 10 input deposits";
130  for (unsigned int i =0;i<nDeps; ++i){
131  depMaps[i] = std::auto_ptr<reco::IsoDepositMap>(new reco::IsoDepositMap());
132  }
133 
137  if (nMuons > 0){
138 
139  std::vector<std::vector<IsoDeposit> > deps2D(nDeps, std::vector<IsoDeposit>(nMuons));
140 
141  for (unsigned int i=0; i< nMuons; ++i) {
142  TrackBaseRef muRef;
143  if (readFromRecoMuon){
144  if (theMuonTrackRefType == "track"){
145  muRef = TrackBaseRef((*muons)[i].track());
146  } else if (theMuonTrackRefType == "standAloneMuon"){
147  muRef = TrackBaseRef((*muons)[i].standAloneMuon());
148  } else if (theMuonTrackRefType == "combinedMuon"){
149  muRef = TrackBaseRef((*muons)[i].combinedMuon());
150  } else if (theMuonTrackRefType == "bestGlbTrkSta"){
151  if (!(*muons)[i].combinedMuon().isNull()){
152  muRef = TrackBaseRef((*muons)[i].combinedMuon());
153  } else if (!(*muons)[i].track().isNull()){
154  muRef = TrackBaseRef((*muons)[i].track());
155  } else {
156  muRef = TrackBaseRef((*muons)[i].standAloneMuon());
157  }
158  } else if (theMuonTrackRefType == "bestTrkSta"){
159  if (!(*muons)[i].track().isNull()){
160  muRef = TrackBaseRef((*muons)[i].track());
161  } else {
162  muRef = TrackBaseRef((*muons)[i].standAloneMuon());
163  }
164  }else {
165  edm::LogWarning(metname)<<"Wrong track type is supplied: breaking";
166  break;
167  }
168  } else if (readFromRecoTrack){
169  muRef = TrackBaseRef(tracks, i);
170  }
171 
173  if (readFromCandidateView || theExtractForCandidate) deps2D[0][i] = theExtractor->deposit(event, eventSetup, (*cands)[i]);
174  else deps2D[0][i] = theExtractor->deposit(event, eventSetup, muRef);
175 
176  } else {
177  std::vector<IsoDeposit> deps(nDeps);
178  if (readFromCandidateView || theExtractForCandidate) deps = theExtractor->deposits(event, eventSetup, (*cands)[i]);
179  else deps = theExtractor->deposits(event, eventSetup, muRef);
180  for (unsigned int iDep =0; iDep<nDeps; ++iDep) {
181  deps2D[iDep][i] = deps[iDep];
182  }
183  }
184  }
185 
187  for (unsigned int iDep=0; iDep < nDeps; ++iDep){
189  for (unsigned int iMu = 0; iMu< nMuons; ++iMu){
190  LogTrace(metname)<<"Contents of "<<theDepositNames[iDep]
191  <<" for a muon at index "<<iMu;
192  LogTrace(metname)<<deps2D[iDep][iMu].print();
193  }
194 
196  reco::IsoDepositMap::Filler filler(*depMaps[iDep]);
197 
199  if (readFromRecoMuon){
200  filler.insert(muons, deps2D[iDep].begin(), deps2D[iDep].end());
201  } else if (readFromRecoTrack){
202  filler.insert(tracks, deps2D[iDep].begin(), deps2D[iDep].end());
203  } else if (readFromCandidateView){
204  filler.insert(cands, deps2D[iDep].begin(), deps2D[iDep].end());
205  } else {
206  edm::LogError(metname)<<"Inconsistent configuration: unknown type requested";
207  }
208 
210  filler.fill();
211  }
212  }
213 
214 
215  for (unsigned int iMap = 0; iMap < nDeps; ++iMap){
216  LogTrace(metname)<<"About to put a deposit named "<<theDepositNames[iMap]
217  <<" of size "<<depMaps[iMap]->size()
218  <<" into edm::Event";
219  event.put(depMaps[iMap], theDepositNames[iMap]);
220  }
221 
222  LogTrace(metname) <<" END OF EVENT " <<"================================";
223 }
224 
#define LogDebug(id)
T getParameter(std::string const &) const
int i
Definition: DBlmapReader.cc:9
std::vector< std::string > theDepositNames
MuIsoDepositProducer(const edm::ParameterSet &)
constructor
const std::string metname
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:17
void insert(const H &h, I begin, I end)
Definition: ValueMap.h:52
virtual ~MuIsoDepositProducer()
destructor
edm::InputTag theMuonCollectionTag
edm::RefToBase< reco::Track > TrackBaseRef
persistent reference to a Track, using views
Definition: TrackFwd.h:31
ConsumesCollector consumesCollector()
Use a ConsumesCollector to gather consumes information from helper functions.
#define end
Definition: vmac.h:37
edm::ValueMap< reco::IsoDeposit > IsoDepositMap
keep it only as a part of ValueMap
Definition: IsoDepositFwd.h:9
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)
tuple tracks
Definition: testEve_cfg.py:39
virtual std::vector< reco::IsoDeposit > deposits(const edm::Event &ev, const edm::EventSetup &evSetup, const reco::Track &track) const
virtual void produce(edm::Event &, const edm::EventSetup &)
data making method
#define begin
Definition: vmac.h:30
tuple muons
Definition: patZpeak.py:38
reco::isodeposit::IsoDepositExtractor * theExtractor
virtual reco::IsoDeposit deposit(const edm::Event &ev, const edm::EventSetup &evSetup, const reco::Track &track) const =0
edm::ParameterSet theConfig
module configuration
T get(const Candidate &c)
Definition: component.h:55