CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Protected Member Functions | Private Member Functions | Private Attributes
RPCDataCertification Class Reference

#include <RPCDataCertification.h>

Inheritance diagram for RPCDataCertification:
DQMEDHarvester edm::one::EDAnalyzer< edm::one::WatchRuns, edm::one::WatchLuminosityBlocks, edm::one::SharedResources > edm::one::EDAnalyzerBase edm::EDConsumerBase

Public Member Functions

 RPCDataCertification (const edm::ParameterSet &pset)
 Constructor. More...
 
virtual ~RPCDataCertification ()
 Destructor. More...
 
- 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 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
void callWhenNewProductsRegistered (std::function< void(BranchDescription const &)> const &func)
 
 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 ()
 

Protected Member Functions

void beginJob ()
 
void dqmEndJob (DQMStore::IBooker &, DQMStore::IGetter &) override
 
void dqmEndLuminosityBlock (DQMStore::IBooker &, DQMStore::IGetter &, edm::LuminosityBlock const &, edm::EventSetup const &)
 
- 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)
 

Private Member Functions

void checkFED (edm::EventSetup const &)
 
void myBooker (DQMStore::IBooker &)
 

Private Attributes

MonitorElementcertDiskFractions [10]
 
MonitorElementCertMap_
 
MonitorElementcertWheelFractions [5]
 
double defaultValue_
 
std::pair< int, int > FEDRange_
 
bool init_
 
int numberOfDisks_
 
int NumberOfFeds_
 
bool offlineDQM_
 
MonitorElementtotalCertFraction
 

Additional Inherited Members

- Public Types inherited from edm::one::EDAnalyzerBase
typedef EDAnalyzerBase ModuleType
 
- Public Types inherited from edm::EDConsumerBase
typedef ProductLabels Labels
 
- Static Public Member Functions inherited from edm::one::EDAnalyzerBase
static const std::string & baseType ()
 
static void fillDescriptions (ConfigurationDescriptions &descriptions)
 
static void prevalidate (ConfigurationDescriptions &descriptions)
 

Detailed Description

Definition at line 10 of file RPCDataCertification.h.

Constructor & Destructor Documentation

RPCDataCertification::RPCDataCertification ( const edm::ParameterSet pset)

Constructor.

Definition at line 15 of file RPCDataCertification.cc.

References defaultValue_, FEDRange_, edm::ParameterSet::getUntrackedParameter(), init_, numberOfDisks_, NumberOfFeds_, and offlineDQM_.

15  {
16 
17  numberOfDisks_ = ps.getUntrackedParameter<int>("NumberOfEndcapDisks", 4);
18  FEDRange_.first = ps.getUntrackedParameter<unsigned int>("MinimumRPCFEDId", 790);
19  FEDRange_.second = ps.getUntrackedParameter<unsigned int>("MaximumRPCFEDId", 792);
20  NumberOfFeds_ =FEDRange_.second - FEDRange_.first +1;
21  offlineDQM_ = ps.getUntrackedParameter<bool> ("OfflineDQM",true);
22 
23  init_= false;
24  defaultValue_=1.;
25 }
std::pair< int, int > FEDRange_
RPCDataCertification::~RPCDataCertification ( )
virtual

Destructor.

Definition at line 27 of file RPCDataCertification.cc.

27 {}

Member Function Documentation

void RPCDataCertification::beginJob ( void  )
protectedvirtual

Reimplemented from edm::one::EDAnalyzerBase.

Definition at line 29 of file RPCDataCertification.cc.

29 {}
void RPCDataCertification::checkFED ( edm::EventSetup const &  setup)
private

Definition at line 49 of file RPCDataCertification.cc.

References defaultValue_, f, FEDRange_, edm::EventSetup::find(), edm::eventsetup::heterocontainer::HCTypeTag::findType(), edm::EventSetup::get(), and init_.

Referenced by dqmEndLuminosityBlock().

49  {
51 
52  double defaultValue = 1.;
53 
54  if(0 != setup.find( recordKey ) ) {
55  defaultValue = -1;
56  //get fed summary information
58  setup.get<RunInfoRcd>().get(sumFED);
59  std::vector<int> FedsInIds= sumFED->m_fed_in;
60  unsigned int f = 0;
61  bool flag = false;
62  while(!flag && f < FedsInIds.size()) {
63  int fedID=FedsInIds[f];
64  //make sure fed id is in allowed range
65  if(fedID>=FEDRange_.first && fedID<=FEDRange_.second) {
66  defaultValue = 1;
67  flag = true;
68  }
69  f++;
70  }
71  }
72 
73  defaultValue_ = defaultValue;
74 
75  init_= true;
76 
77 }
std::pair< int, int > FEDRange_
double f[11][100]
void setup(std::vector< TH2F > &depth, std::string name, std::string units="")
static HCTypeTag findType(char const *iTypeName)
find a type based on the types name, if not found will return default HCTypeTag
Definition: HCTypeTag.cc:125
void RPCDataCertification::dqmEndJob ( DQMStore::IBooker ibooker,
DQMStore::IGetter igetter 
)
overrideprotectedvirtual

Implements DQMEDHarvester.

Definition at line 42 of file RPCDataCertification.cc.

References myBooker(), and offlineDQM_.

42  {
43 
44  if(offlineDQM_){ this->myBooker(ibooker); }
45 
46 }
void myBooker(DQMStore::IBooker &)
void RPCDataCertification::dqmEndLuminosityBlock ( DQMStore::IBooker ibooker,
DQMStore::IGetter igetter,
edm::LuminosityBlock const &  LB,
edm::EventSetup const &  setup 
)
protectedvirtual

Reimplemented from DQMEDHarvester.

Definition at line 31 of file RPCDataCertification.cc.

References checkFED(), init_, myBooker(), and offlineDQM_.

32  {
33 
34  if(!init_){
35 
36  this->checkFED(setup);
37 
38  if(!offlineDQM_){ this->myBooker(ibooker); }
39  }
40 }
void myBooker(DQMStore::IBooker &)
void checkFED(edm::EventSetup const &)
void setup(std::vector< TH2F > &depth, std::string name, std::string units="")
void RPCDataCertification::myBooker ( DQMStore::IBooker ibooker)
private

Definition at line 80 of file RPCDataCertification.cc.

References DQMStore::IBooker::book2D(), DQMStore::IBooker::bookFloat(), certDiskFractions, CertMap_, certWheelFractions, defaultValue_, MonitorElement::Fill(), i, j, MessageLogger_cff::limit, numberOfDisks_, hltrates_dqm_sourceclient-live_cfg::offset, MonitorElement::setBinContent(), MonitorElement::setBinLabel(), DQMStore::IBooker::setCurrentFolder(), hcal_dqm_sourceclient-file_cfg::streams, and totalCertFraction.

Referenced by dqmEndJob(), and dqmEndLuminosityBlock().

80  {
81 
82  ibooker.setCurrentFolder("RPC/EventInfo");
83  // global fraction
84  totalCertFraction = ibooker.bookFloat("CertificationSummary");
86 
87  CertMap_ = ibooker.book2D( "CertificationSummaryMap","RPC Certification Summary Map",15, -7.5, 7.5, 12, 0.5 ,12.5);
88 
89  //customize the 2d histo
90  std::stringstream BinLabel;
91  for (int i= 1 ; i<13; i++){
92  BinLabel.str("");
93  BinLabel<<"Sec"<<i;
94  CertMap_->setBinLabel(i,BinLabel.str(),2);
95  }
96 
97  for(int i = -2 ; i <=2; i++){
98  BinLabel.str("");
99  BinLabel<<"Wheel"<<i;
100  CertMap_->setBinLabel(i+8,BinLabel.str(),1);
101  }
102 
103 
104  for(int i = 1; i<=numberOfDisks_; i++){
105  BinLabel.str("");
106  BinLabel<<"Disk"<<i;
107  CertMap_->setBinLabel((i+11),BinLabel.str(),1);
108  BinLabel.str("");
109  BinLabel<<"Disk"<<-i;
110  CertMap_->setBinLabel((-i+5),BinLabel.str(),1);
111  }
112  //fill the histo with "1" --- just for the moment
113  for(int i=1; i<=15; i++){
114  for (int j=1; j<=12; j++ ){
115  if(i==5 || i==11 || (j>6 && (i<6 || i>10)))
116  CertMap_->setBinContent(i,j,-1);//bins that not correspond to subdetector parts
117  else
119  }
120  }
121 
122 
123  if(numberOfDisks_ < 4){
124  for (int j=1; j<=12; j++ ){
125  CertMap_->setBinContent(1,j,-1);//bins that not correspond to subdetector parts
126  CertMap_->setBinContent(15,j,-1);
127  }
128  }
129  // book the ME
130  ibooker.setCurrentFolder("RPC/EventInfo/CertificationContents");
131 
132  int limit = numberOfDisks_;
133  if(numberOfDisks_ < 2) limit = 2;
134 
135 
136  for (int i = -1 * limit; i<= limit;i++ ){//loop on wheels and disks
137  if (i>-3 && i<3){//wheels
138  std::stringstream streams;
139  streams << "RPC_Wheel" << i;
140  certWheelFractions[i+2] = ibooker.bookFloat(streams.str());
142  }
143 
144  if (i == 0 || i > numberOfDisks_ || i< (-1 * numberOfDisks_))continue;
145 
146  int offset = numberOfDisks_;
147  if (i>0) offset --; //used to skip case equale to zero
148  std::stringstream streams;
149  streams << "RPC_Disk" << i;
150  certDiskFractions[i+2] = ibooker.bookFloat(streams.str());
152  }
153 }
int i
Definition: DBlmapReader.cc:9
void setBinContent(int binx, double content)
set content of bin (1-D)
MonitorElement * certWheelFractions[5]
void setBinLabel(int bin, const std::string &label, int axis=1)
set bin label for x, y or z axis (axis=1, 2, 3 respectively)
void Fill(long long x)
MonitorElement * CertMap_
MonitorElement * totalCertFraction
int j
Definition: DBlmapReader.cc:9
MonitorElement * certDiskFractions[10]
void setCurrentFolder(const std::string &fullpath)
Definition: DQMStore.cc:274
MonitorElement * book2D(Args &&...args)
Definition: DQMStore.h:133
MonitorElement * bookFloat(Args &&...args)
Definition: DQMStore.h:109

Member Data Documentation

MonitorElement* RPCDataCertification::certDiskFractions[10]
private

Definition at line 32 of file RPCDataCertification.h.

Referenced by myBooker().

MonitorElement* RPCDataCertification::CertMap_
private

Definition at line 29 of file RPCDataCertification.h.

Referenced by myBooker().

MonitorElement* RPCDataCertification::certWheelFractions[5]
private

Definition at line 31 of file RPCDataCertification.h.

Referenced by myBooker().

double RPCDataCertification::defaultValue_
private

Definition at line 37 of file RPCDataCertification.h.

Referenced by checkFED(), myBooker(), and RPCDataCertification().

std::pair<int, int> RPCDataCertification::FEDRange_
private

Definition at line 33 of file RPCDataCertification.h.

Referenced by checkFED(), and RPCDataCertification().

bool RPCDataCertification::init_
private

Definition at line 36 of file RPCDataCertification.h.

Referenced by checkFED(), dqmEndLuminosityBlock(), and RPCDataCertification().

int RPCDataCertification::numberOfDisks_
private

Definition at line 34 of file RPCDataCertification.h.

Referenced by myBooker(), and RPCDataCertification().

int RPCDataCertification::NumberOfFeds_
private

Definition at line 35 of file RPCDataCertification.h.

Referenced by RPCDataCertification().

bool RPCDataCertification::offlineDQM_
private

Definition at line 36 of file RPCDataCertification.h.

Referenced by dqmEndJob(), dqmEndLuminosityBlock(), and RPCDataCertification().

MonitorElement* RPCDataCertification::totalCertFraction
private

Definition at line 30 of file RPCDataCertification.h.

Referenced by myBooker().