CMS 3D CMS Logo

List of all members | Public Member Functions | Private Member Functions | Private Attributes
MEtoMEComparitor Class Reference

#include <DQMOffline/MEtoMEComparitor/src/MEtoMEComparitor.cc>

Inheritance diagram for MEtoMEComparitor:
edm::EDAnalyzer edm::EDConsumerBase

Public Member Functions

 MEtoMEComparitor (const edm::ParameterSet &)
 
 ~MEtoMEComparitor ()
 
- Public Member Functions inherited from edm::EDAnalyzer
void callWhenNewProductsRegistered (std::function< void(BranchDescription const &)> const &func)
 
 EDAnalyzer ()
 
ModuleDescription const & moduleDescription () const
 
std::string workerType () const
 
virtual ~EDAnalyzer ()
 
- Public Member Functions inherited from edm::EDConsumerBase
std::vector< ConsumesInfoconsumesInfo () const
 
void convertCurrentProcessAlias (std::string const &processName)
 Convert "@currentProcess" in InputTag process names to the actual current process name. More...
 
 EDConsumerBase ()
 
 EDConsumerBase (EDConsumerBase const &)=delete
 
 EDConsumerBase (EDConsumerBase &&)=default
 
ProductResolverIndexAndSkipBit indexFrom (EDGetToken, BranchType, TypeID const &) const
 
void itemsMayGet (BranchType, std::vector< ProductResolverIndexAndSkipBit > &) const
 
void itemsToGet (BranchType, std::vector< ProductResolverIndexAndSkipBit > &) const
 
std::vector< ProductResolverIndexAndSkipBit > const & itemsToGetFrom (BranchType iType) const
 
void labelsForToken (EDGetToken iToken, Labels &oLabels) const
 
void modulesWhoseProductsAreConsumed (std::vector< ModuleDescription const * > &modules, ProductRegistry const &preg, std::map< std::string, ModuleDescription const * > const &labelsToDesc, std::string const &processName) const
 
EDConsumerBase const & operator= (EDConsumerBase const &)=delete
 
EDConsumerBaseoperator= (EDConsumerBase &&)=default
 
bool registeredToConsume (ProductResolverIndex, bool, BranchType) const
 
bool registeredToConsumeMany (TypeID const &, BranchType) const
 
void updateLookup (BranchType iBranchType, ProductResolverIndexHelper const &, bool iPrefetchMayGet)
 
virtual ~EDConsumerBase () noexcept(false)
 

Private Member Functions

virtual void analyze (const edm::Event &, const edm::EventSetup &)
 
virtual void beginJob ()
 
virtual void beginRun (const edm::Run &iRun, const edm::EventSetup &iSetup)
 
template<class T >
void book (const std::string &directory, const std::string &type, const T *h)
 
template<class W , class T >
void compare (const W &where, const std::string &instance)
 
virtual void endJob ()
 
virtual void endLuminosityBlock (const edm::LuminosityBlock &, const edm::EventSetup &)
 
virtual void endRun (const edm::Run &iRun, const edm::EventSetup &iSetup)
 
template<class T >
void keepBadHistograms (const std::string &directory, const T *h_new, const T *h_ref)
 

Private Attributes

bool _autoProcess
 
DQMStore_dbe
 
double _diffgoodness
 
unsigned int _dirDepth
 
double _KSgoodness
 
std::string _lumiInstance
 
std::string _moduleLabel
 
double _overallgoodness
 
std::string _process_new
 
std::string _process_ref
 
std::string _runInstance
 

Additional Inherited Members

- Public Types inherited from edm::EDAnalyzer
typedef EDAnalyzer ModuleType
 
- Public Types inherited from edm::EDConsumerBase
typedef ProductLabels Labels
 
- Static Public Member Functions inherited from edm::EDAnalyzer
static const std::string & baseType ()
 
static void fillDescriptions (ConfigurationDescriptions &descriptions)
 
static void prevalidate (ConfigurationDescriptions &)
 
- Protected Member Functions inherited from edm::EDConsumerBase
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > consumes (edm::InputTag const &tag)
 
EDGetToken consumes (const TypeToGet &id, edm::InputTag const &tag)
 
template<BranchType B>
EDGetToken consumes (TypeToGet const &id, edm::InputTag const &tag)
 
ConsumesCollector consumesCollector ()
 Use a ConsumesCollector to gather consumes information from helper functions. More...
 
template<typename ProductType , BranchType B = InEvent>
void consumesMany ()
 
void consumesMany (const TypeToGet &id)
 
template<BranchType B>
void consumesMany (const TypeToGet &id)
 
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > mayConsume (edm::InputTag const &tag)
 
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 
template<BranchType B>
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 

Detailed Description

Description: [one line class summary]

Implementation: [Notes on implementation]

Definition at line 50 of file MEtoMEComparitor.h.

Constructor & Destructor Documentation

MEtoMEComparitor::MEtoMEComparitor ( const edm::ParameterSet iConfig)
explicit

Definition at line 27 of file MEtoMEComparitor.cc.

References _autoProcess, _dbe, _diffgoodness, _dirDepth, _KSgoodness, _lumiInstance, _moduleLabel, _overallgoodness, _process_new, _process_ref, _runInstance, edm::ParameterSet::getParameter(), Utilities::operator, and AlCaHLTBitMon_QueryRunRegistry::string.

29 {
30  _moduleLabel = iConfig.getParameter<std::string>("MEtoEDMLabel");
31 
32  _lumiInstance = iConfig.getParameter<std::string>("lumiInstance");
33  _runInstance = iConfig.getParameter<std::string>("runInstance");
34 
35  _process_ref = iConfig.getParameter<std::string>("processRef");
36  _process_new = iConfig.getParameter<std::string>("processNew");
37 
38  _autoProcess=iConfig.getParameter<bool>("autoProcess");
39 
40  _KSgoodness = iConfig.getParameter<double>("KSgoodness");
41  _diffgoodness = iConfig.getParameter<double>("Diffgoodness");
42  _dirDepth = iConfig.getParameter<unsigned int>("dirDepth");
43  _overallgoodness = iConfig.getParameter<double>("OverAllgoodness");
44 
46 
47 
48 }
T getParameter(std::string const &) const
std::string _lumiInstance
std::string _process_ref
std::string _process_new
unsigned int _dirDepth
std::string _runInstance
std::string _moduleLabel
MEtoMEComparitor::~MEtoMEComparitor ( )

Definition at line 51 of file MEtoMEComparitor.cc.

52 {
53 
54 }

Member Function Documentation

virtual void MEtoMEComparitor::analyze ( const edm::Event ,
const edm::EventSetup  
)
inlineprivatevirtual
void MEtoMEComparitor::beginJob ( void  )
privatevirtual

Reimplemented from edm::EDAnalyzer.

Definition at line 289 of file MEtoMEComparitor.cc.

290 {
291 }
void MEtoMEComparitor::beginRun ( const edm::Run iRun,
const edm::EventSetup iSetup 
)
privatevirtual

Definition at line 66 of file MEtoMEComparitor.cc.

References _autoProcess, _process_new, _process_ref, gather_cfg::cout, edm::Run::processHistory(), and edm::ProcessHistory::rbegin().

Referenced by analyze().

67 {
68  if (_autoProcess)
69  {
70  const edm::ProcessHistory& iHistory=iRun.processHistory();
71 
73  _process_new=hi->processName();
74  hi++;
75  _process_ref=hi->processName();
76  std::cout<<_process_ref<<" vs "<<_process_new<<std::endl;
77  }
78 }
const_reverse_iterator rbegin() const
collection_type::const_reverse_iterator const_reverse_iterator
std::string _process_ref
ProcessHistory const & processHistory() const
Definition: Run.cc:111
std::string _process_new
template<class T >
void MEtoMEComparitor::book ( const std::string &  directory,
const std::string &  type,
const T h 
)
private

Definition at line 92 of file MEtoMEComparitor.cc.

References _dbe, DQMStore::book1D(), DQMStore::book1DD(), DQMStore::book1S(), h, and DQMStore::setCurrentFolder().

Referenced by analyze(), and keepBadHistograms().

92  {
94  std::type_info const & tp = typeid(*h);
95  if (tp == typeid(TH1S))
96  _dbe->book1S(h->GetName(),dynamic_cast<TH1S*>(const_cast<T*>(h)));
97  else if (tp == typeid(TH1F))
98  _dbe->book1D(h->GetName(),dynamic_cast<TH1F*>(const_cast<T*>(h)));
99  else if (tp == typeid(TH1D))
100  _dbe->book1DD(h->GetName(),dynamic_cast<TH1D*>(const_cast<T*>(h)));
101 }
type
Definition: HCALResponse.h:21
FWCore Framework interface EventSetupRecordImplementation h
Helper function to determine trigger accepts.
MonitorElement * book1D(const char *name, const char *title, int nchX, double lowX, double highX)
Book 1D histogram.
Definition: DQMStore.cc:1035
MonitorElement * book1DD(const char *name, const char *title, int nchX, double lowX, double highX)
Book 1S histogram.
Definition: DQMStore.cc:1067
long double T
MonitorElement * book1S(const char *name, const char *title, int nchX, double lowX, double highX)
Book 1S histogram.
Definition: DQMStore.cc:1051
void setCurrentFolder(const std::string &fullpath)
Definition: DQMStore.cc:741
template<class W , class T >
void MEtoMEComparitor::compare ( const W &  where,
const std::string &  instance 
)
private

Definition at line 128 of file MEtoMEComparitor.cc.

References _diffgoodness, _dirDepth, _KSgoodness, _moduleLabel, _overallgoodness, _process_new, _process_ref, funct::abs(), dir, cppFunctionSkipper::exception, edm::HandleBase::failedToGet(), dedxEstimators_cff::fraction, createfilelist::int, keepBadHistograms(), LogDebug, HPSPFTaus_cff::mapping, split, AlCaHLTBitMon_QueryRunRegistry::string, and heppy_report::summary.

Referenced by analyze().

128  {
129 
130  edm::Handle<MEtoEDM<T> > metoedm_ref;
131  edm::Handle<MEtoEDM<T> > metoedm_new;
132  where.getByLabel(edm::InputTag(_moduleLabel,
133  instance,
134  _process_ref),
135  metoedm_ref);
136  where.getByLabel(edm::InputTag(_moduleLabel,
137  instance,
138  _process_new),
139  metoedm_new);
140 
141  if (metoedm_ref.failedToGet() || metoedm_new.failedToGet()){
142  edm::LogError("ProductNotFound")<<"MEtoMEComparitor did not find his products.";
143  return;
144  }
145 
146  typedef typename MEtoEDM<T>::MEtoEDMObject MEtoEDMObject;
147 
148  const std::vector<MEtoEDMObject> & metoedmobject_ref = metoedm_ref->getMEtoEdmObject();
149  const std::vector<MEtoEDMObject> & metoedmobject_new = metoedm_new->getMEtoEdmObject();
150 
151  typedef std::map<std::string, std::pair<const MEtoEDMObject*, const MEtoEDMObject*> > Mapping;
152  typedef typename std::map<std::string, std::pair<const MEtoEDMObject*, const MEtoEDMObject*> >::iterator Mapping_iterator;
153 
154  Mapping mapping;
155 
156  LogDebug("MEtoMEComparitor")<<"going to do the mapping from "<<metoedmobject_ref.size()<<" x "<<metoedmobject_new.size();
157  unsigned int countMe=0;
158  for (unsigned int i_new=0; i_new!= metoedmobject_new.size(); ++i_new){
159  const std::string & pathname = metoedmobject_new[i_new].name;
160  if (metoedmobject_new[i_new].object.GetEntries()==0 ||
161  metoedmobject_new[i_new].object.Integral()==0){
162  countMe--;
163  continue;
164  }
165  mapping[pathname]=std::make_pair(&metoedmobject_new[i_new],(const MEtoEDMObject*)0);
166  }
167  for (unsigned int i_ref=0; i_ref!= metoedmobject_ref.size() ; ++i_ref){
168  const std::string & pathname = metoedmobject_ref[i_ref].name;
169  Mapping_iterator there = mapping.find(pathname);
170  if (there != mapping.end()){
171  there->second.second = &metoedmobject_ref[i_ref];
172  }
173  }
174 
175  LogDebug("MEtoMEComparitor")<<"found "<<mapping.size()<<" pairs of plots";
176  countMe=0;
177 
178  unsigned int nNoMatch=0;
179  unsigned int nEmpty=0;
180  unsigned int nHollow=0;
181  unsigned int nGoodKS=0;
182  unsigned int nBadKS=0;
183  unsigned int nBadDiff=0;
184  unsigned int nGoodDiff=0;
185 
186  typedef std::map<std::string, std::pair<unsigned int,unsigned int> > Subs;
187  Subs subSystems;
188 
189  for (Mapping_iterator it = mapping.begin();
190  it!=mapping.end();
191  ++it){
192  if (!it->second.second){
193  //this is expected by how the map was created
194  nNoMatch++;
195  continue;
196  }
197  const T * h_ref = &it->second.second->object;
198  const T * h_new = &it->second.first->object;
199 
200  lat::StringList dir = lat::StringOps::split(it->second.second->name,"/");
201  std::string subsystem = dir[0];
202  if (dir.size()>=_dirDepth)
203  for (unsigned int iD=1;iD!=_dirDepth;++iD) subsystem+="/"+dir[iD];
204  subSystems[subsystem].first++;
205 
206  if (h_ref->GetEntries()!=0 && h_ref->Integral()!=0){
207  double KS=0;
208  bool cannotComputeKS=false;
209  try {
210  KS = h_new->KolmogorovTest(h_ref);
211  }
212  catch( cms::Exception& exception ){
213  cannotComputeKS=true;
214  }
215  if (KS<_KSgoodness){
216 
217  unsigned int total_ref=0;
218  unsigned int absdiff=0;
219  for (unsigned int iBin=0;
220  iBin!=(unsigned int)h_new->GetNbinsX()+1 ;
221  ++iBin){
222  total_ref+=h_ref->GetBinContent(iBin);
223  absdiff=std::abs(h_new->GetBinContent(iBin) - h_ref->GetBinContent(iBin));
224  }
225  double relativediff=1;
226  if (total_ref!=0){
227  relativediff=absdiff / (double) total_ref;
228  }
229  if (relativediff > _diffgoodness ){
230  edm::LogWarning("MEtoMEComparitor")<<"for "<<h_new->GetName()
231  <<" in "<<it->first
232  <<" the KS is "<<KS*100.<<" %"
233  <<" and the relative diff is: "<<relativediff*100.<<" %"
234  <<" KS"<<((cannotComputeKS)?" not valid":" is valid");
235  //std::string(" KolmogorovTest is not happy on : ")+h_new->GetName() : "";
236  //there you want to output the plots somewhere
237  keepBadHistograms(subsystem,h_new,h_ref);
238 
239  nBadDiff++;
240  subSystems[subsystem].second++;
241  }else{
242  nGoodDiff++;
243  }
244  nBadKS++;
245  }
246  else
247  nGoodKS++;
248  }
249  else{
250  if (h_ref->GetEntries()==0)
251  nEmpty++;
252  else
253  nHollow++;
254  LogDebug("MEtoMEComparitor")<<h_new->GetName() <<" in "<<it->first <<" is empty";
255  countMe--;
256  }
257 
258  }
259 
260  if (mapping.size()!=0){
261  std::stringstream summary;
262  summary<<" Summary :"
263  <<"\n not matched : "<<nNoMatch
264  <<"\n empty : "<<nEmpty
265  <<"\n integral zero : "<<nHollow
266  <<"\n good KS : "<<nGoodKS
267  <<"\n bad KS : "<<nBadKS
268  <<"\n bad diff : "<<nBadDiff
269  <<"\n godd diff : "<<nGoodDiff;
270  bool tell=false;
271  for (Subs::iterator iSub=subSystems.begin();
272  iSub!=subSystems.end();++iSub){
273  double fraction = 1-(iSub->second.second / (double)iSub->second.first);
274  summary<<std::endl<<"Subsytem: "<<iSub->first<<" has "<< fraction*100<<" % goodness";
275  if (fraction < _overallgoodness)
276  tell=true;
277  }
278  if (tell)
279  edm::LogWarning("MEtoMEComparitor")<<summary.str();
280  else
281  edm::LogInfo("MEtoMEComparitor")<<summary.str();
282  }
283 
284 }
#define LogDebug(id)
static PFTauRenderPlugin instance
std::string _process_ref
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
std::string _process_new
bool failedToGet() const
Definition: HandleBase.h:78
void keepBadHistograms(const std::string &directory, const T *h_new, const T *h_ref)
unsigned int _dirDepth
dbl *** dir
Definition: mlp_gen.cc:35
long double T
double split
Definition: MVATrainer.cc:139
std::string _moduleLabel
void MEtoMEComparitor::endJob ( void  )
privatevirtual

Reimplemented from edm::EDAnalyzer.

Definition at line 295 of file MEtoMEComparitor.cc.

Referenced by analyze().

295  {
296 }
void MEtoMEComparitor::endLuminosityBlock ( const edm::LuminosityBlock iLumi,
const edm::EventSetup  
)
privatevirtual

Definition at line 57 of file MEtoMEComparitor.cc.

References _lumiInstance.

Referenced by analyze().

58 {
59 
60  compare<edm::LuminosityBlock,TH1S>(iLumi,_lumiInstance);
61  compare<edm::LuminosityBlock,TH1F>(iLumi,_lumiInstance);
62  compare<edm::LuminosityBlock,TH1D>(iLumi,_lumiInstance);
63 }
std::string _lumiInstance
void MEtoMEComparitor::endRun ( const edm::Run iRun,
const edm::EventSetup iSetup 
)
privatevirtual

Definition at line 81 of file MEtoMEComparitor.cc.

References _runInstance.

Referenced by analyze().

82 {
83 
84  compare<edm::Run,TH1S>(iRun,_runInstance);
85  compare<edm::Run,TH1F>(iRun,_runInstance);
86  compare<edm::Run,TH1D>(iRun,_runInstance);
87 
88 }
std::string _runInstance
template<class T >
void MEtoMEComparitor::keepBadHistograms ( const std::string &  directory,
const T h_new,
const T h_ref 
)
private

Definition at line 103 of file MEtoMEComparitor.cc.

References book(), and AlCaHLTBitMon_QueryRunRegistry::string.

Referenced by analyze(), and compare().

103  {
104  //put it in a collection rather.
105 
106 
107  std::string d_n(h_new->GetName());
108  d_n+="_diff";
109  T * difference = new T(d_n.c_str(),
110  h_new->GetTitle(),
111  h_new->GetNbinsX(),
112  h_new->GetXaxis()->GetXmin(),
113  h_new->GetXaxis()->GetXmax());
114  difference->Add(h_new);
115  difference->Add(h_ref,-1.);
116 
117  book(directory,"Ref",h_ref);
118  book(directory,"New",h_new);
119  book(directory,"Diff",difference);
120  delete difference;
121 
122 }
void book(const std::string &directory, const std::string &type, const T *h)
long double T

Member Data Documentation

bool MEtoMEComparitor::_autoProcess
private

Definition at line 76 of file MEtoMEComparitor.h.

Referenced by beginRun(), and MEtoMEComparitor().

DQMStore* MEtoMEComparitor::_dbe
private

Definition at line 68 of file MEtoMEComparitor.h.

Referenced by book(), and MEtoMEComparitor().

double MEtoMEComparitor::_diffgoodness
private

Definition at line 79 of file MEtoMEComparitor.h.

Referenced by compare(), and MEtoMEComparitor().

unsigned int MEtoMEComparitor::_dirDepth
private

Definition at line 80 of file MEtoMEComparitor.h.

Referenced by compare(), and MEtoMEComparitor().

double MEtoMEComparitor::_KSgoodness
private

Definition at line 78 of file MEtoMEComparitor.h.

Referenced by compare(), and MEtoMEComparitor().

std::string MEtoMEComparitor::_lumiInstance
private

Definition at line 71 of file MEtoMEComparitor.h.

Referenced by endLuminosityBlock(), and MEtoMEComparitor().

std::string MEtoMEComparitor::_moduleLabel
private

Definition at line 69 of file MEtoMEComparitor.h.

Referenced by compare(), and MEtoMEComparitor().

double MEtoMEComparitor::_overallgoodness
private

Definition at line 81 of file MEtoMEComparitor.h.

Referenced by compare(), and MEtoMEComparitor().

std::string MEtoMEComparitor::_process_new
private

Definition at line 75 of file MEtoMEComparitor.h.

Referenced by beginRun(), compare(), and MEtoMEComparitor().

std::string MEtoMEComparitor::_process_ref
private

Definition at line 74 of file MEtoMEComparitor.h.

Referenced by beginRun(), compare(), and MEtoMEComparitor().

std::string MEtoMEComparitor::_runInstance
private

Definition at line 72 of file MEtoMEComparitor.h.

Referenced by endRun(), and MEtoMEComparitor().