CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Private Attributes
DQMHcalIsoTrackPostProcessor Class Reference
Inheritance diagram for DQMHcalIsoTrackPostProcessor:
DQMEDHarvester edm::one::EDAnalyzer< edm::one::WatchRuns, edm::one::WatchLuminosityBlocks, edm::one::SharedResources > edm::one::EDAnalyzerBase edm::EDConsumerBase

Public Member Functions

virtual void dqmEndJob (DQMStore::IBooker &, DQMStore::IGetter &) override
 
 DQMHcalIsoTrackPostProcessor (const edm::ParameterSet &pset)
 
 ~DQMHcalIsoTrackPostProcessor ()
 
- Public Member Functions inherited from DQMEDHarvester
virtual void analyze (edm::Event const &, edm::EventSetup const &) final
 
virtual void beginLuminosityBlock (edm::LuminosityBlock const &, edm::EventSetup const &) final
 
virtual void beginRun (edm::Run const &, edm::EventSetup const &)
 
 DQMEDHarvester (void)
 
virtual void dqmEndLuminosityBlock (DQMStore::IBooker &, DQMStore::IGetter &, edm::LuminosityBlock const &, edm::EventSetup const &)
 
virtual void endJob () final
 
virtual void endLuminosityBlock (edm::LuminosityBlock const &, edm::EventSetup const &) final
 
virtual void endRun (edm::Run const &, edm::EventSetup const &)
 
- Public Member Functions inherited from edm::one::EDAnalyzer< edm::one::WatchRuns, edm::one::WatchLuminosityBlocks, edm::one::SharedResources >
 EDAnalyzer ()=default
 
- Public Member Functions inherited from edm::one::EDAnalyzerBase
 EDAnalyzerBase ()
 
ModuleDescription const & moduleDescription () const
 
virtual ~EDAnalyzerBase ()
 
- Public Member Functions inherited from edm::EDConsumerBase
std::vector< ConsumesInfoconsumesInfo () const
 
 EDConsumerBase ()
 
ProductHolderIndexAndSkipBit indexFrom (EDGetToken, BranchType, TypeID const &) const
 
void itemsMayGet (BranchType, std::vector< ProductHolderIndexAndSkipBit > &) const
 
void itemsToGet (BranchType, std::vector< ProductHolderIndexAndSkipBit > &) const
 
std::vector
< ProductHolderIndexAndSkipBit >
const & 
itemsToGetFromEvent () const
 
void labelsForToken (EDGetToken iToken, Labels &oLabels) const
 
void modulesDependentUpon (const std::string &iProcessName, std::vector< const char * > &oModuleLabels) const
 
void modulesWhoseProductsAreConsumed (std::vector< ModuleDescription const * > &modules, ProductRegistry const &preg, std::map< std::string, ModuleDescription const * > const &labelsToDesc, std::string const &processName) const
 
bool registeredToConsume (ProductHolderIndex, bool, BranchType) const
 
bool registeredToConsumeMany (TypeID const &, BranchType) const
 
void updateLookup (BranchType iBranchType, ProductHolderIndexHelper const &)
 
virtual ~EDConsumerBase ()
 

Private Attributes

std::string outputRootFileName_
 
bool saveToFile_
 
std::string subDir_
 

Additional Inherited Members

- Public Types inherited from edm::one::EDAnalyzerBase
typedef EDAnalyzerBase ModuleType
 
- Static Public Member Functions inherited from edm::one::EDAnalyzerBase
static const std::string & baseType ()
 
static void fillDescriptions (ConfigurationDescriptions &descriptions)
 
static void prevalidate (ConfigurationDescriptions &descriptions)
 
- Protected Member Functions inherited from edm::one::EDAnalyzerBase
void callWhenNewProductsRegistered (std::function< void(BranchDescription const &)> const &func)
 
- 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

Definition at line 20 of file DQMHcalIsoTrackPostProcessor.cc.

Constructor & Destructor Documentation

DQMHcalIsoTrackPostProcessor::DQMHcalIsoTrackPostProcessor ( const edm::ParameterSet pset)
DQMHcalIsoTrackPostProcessor::~DQMHcalIsoTrackPostProcessor ( )
inline

Definition at line 24 of file DQMHcalIsoTrackPostProcessor.cc.

24 {};

Member Function Documentation

void DQMHcalIsoTrackPostProcessor::dqmEndJob ( DQMStore::IBooker ibooker,
DQMStore::IGetter igetter 
)
overridevirtual

Implements DQMEDHarvester.

Definition at line 44 of file DQMHcalIsoTrackPostProcessor.cc.

References DQMStore::IBooker::book1D(), DQMStore::IGetter::cd(), gather_cfg::cout, DQMStore::IGetter::dirExists(), DQMStore::IGetter::get(), getTH1F(), MonitorElement::getTH1F(), i, mergeVDriftHistosByStation::name, DQMStore::IBooker::pwd(), AlCaHLTBitMon_QueryRunRegistry::string, subDir_, and indexGen::title.

44  {
45 
46  if (igetter.dirExists(subDir_)) {
47  igetter.cd(subDir_);
48  } else {
49  edm::LogWarning("DQMHcalIsoTrackPostProcessor") << "cannot find directory: " << subDir_ << " , skipping";
50  return;
51  }
52 
53  MonitorElement *hSumEta[4], *hSumPhi[4], *hPurityEta[3], *hPurityPhi[3];
54  std::string types[4] = {"L2","L2.5","L3","Off"};
55  char name[20], title[100];
56  for (int i=0; i<4; ++i) {
57  sprintf (name, "hSum%sEta", types[i].c_str());
58  hSumEta[i] = ibooker.book1D(name,name,16,-2,2);
59  hSumEta[i]->getTH1F()->TH1F::Sumw2();
60  hSumPhi[i] = ibooker.book1D(name,name,16,-3.2,3.2);
61  hSumPhi[i]->getTH1F()->TH1F::Sumw2();
62  if (i < 3) {
63  sprintf (name, "hPurity%sEta", types[i].c_str());
64  sprintf (title,"Purity of %s sample vs #eta", types[i].c_str());
65  hPurityEta[i] = ibooker.book1D(name, title,16,-2,2);
66  sprintf (name, "hPurity%sPhi", types[i].c_str());
67  sprintf (title,"Purity of %s sample vs #phi", types[i].c_str());
68  hPurityPhi[i] = ibooker.book1D(name, title,16,-3.2,3.2);
69  }
70  }
71 
72  std::string hname;
73  for (int i=0; i<4; ++i) {
74  sprintf (name, "/heta%s", types[i].c_str());
75  hname = ibooker.pwd() + std::string(name);
76 #ifdef DebugLog
77  std::cout << "PostProcesor " << hname << " " << igetter.get(hname) << std::endl;
78 #endif
79  hSumEta[i]->getTH1F()->Add(igetter.get(hname)->getTH1F(),1);
80  sprintf (name, "/hphi%s", types[i].c_str());
81  hname = ibooker.pwd() + std::string(name);
82 #ifdef DebugLog
83  std::cout << "PostProcesor " << hname << " " << igetter.get(hname) << std::endl;
84 #endif
85  hSumPhi[i]->getTH1F()->Add(igetter.get(hname)->getTH1F(),1);
86  }
87 
88  for (int i=0; i<3; ++i) {
89  hPurityEta[i]->getTH1F()->Divide(hSumEta[i+1]->getTH1F(),hSumEta[i]->getTH1F(),1,1);
90  hPurityPhi[i]->getTH1F()->Divide(hSumPhi[i+1]->getTH1F(),hSumPhi[i]->getTH1F(),1,1);
91  }
92 
93 //if (saveToFile_) igetter.save(outputRootFileName_);
94 }
int i
Definition: DBlmapReader.cc:9
void cd(void)
Definition: DQMStore.cc:322
MonitorElement * get(const std::string &path)
Definition: DQMStore.cc:302
const std::string & pwd(void)
Definition: DQMStore.cc:282
MonitorElement * book1D(Args &&...args)
Definition: DQMStore.h:115
TH1F * getTH1F(std::string name, std::string process, std::string rootfolder, DQMStore *dbe_, bool verb, bool clone)
bool dirExists(const std::string &path)
Definition: DQMStore.cc:318
TH1F * getTH1F(void) const
tuple cout
Definition: gather_cfg.py:121

Member Data Documentation

std::string DQMHcalIsoTrackPostProcessor::outputRootFileName_
private

Definition at line 33 of file DQMHcalIsoTrackPostProcessor.cc.

Referenced by DQMHcalIsoTrackPostProcessor().

bool DQMHcalIsoTrackPostProcessor::saveToFile_
private

Definition at line 32 of file DQMHcalIsoTrackPostProcessor.cc.

Referenced by DQMHcalIsoTrackPostProcessor().

std::string DQMHcalIsoTrackPostProcessor::subDir_
private

Definition at line 31 of file DQMHcalIsoTrackPostProcessor.cc.

Referenced by dqmEndJob(), and DQMHcalIsoTrackPostProcessor().