CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
List of all members | Classes | Public Types | Public Member Functions | Protected Member Functions | Static Private Member Functions | Private Attributes
NanoAODDQM Class Reference
Inheritance diagram for NanoAODDQM:
DQMEDAnalyzer edm::stream::EDProducer< edm::GlobalCache< DQMEDAnalyzerGlobalCache >, edm::EndRunProducer, edm::EndLuminosityBlockProducer, edm::Accumulator >

Classes

class  Count1D
 
struct  GroupConfig
 
class  Plot
 
class  Plot1D
 
class  Profile1D
 
struct  SelGroupConfig
 

Public Types

typedef nanoaod::FlatTable FlatTable
 
- Public Types inherited from DQMEDAnalyzer
typedef dqm::reco::DQMStore DQMStore
 
typedef dqm::reco::MonitorElement MonitorElement
 
- Public Types inherited from edm::stream::EDProducer< edm::GlobalCache< DQMEDAnalyzerGlobalCache >, edm::EndRunProducer, edm::EndLuminosityBlockProducer, edm::Accumulator >
using CacheTypes = CacheContexts< T...>
 
using GlobalCache = typename CacheTypes::GlobalCache
 
using HasAbility = AbilityChecker< T...>
 
using InputProcessBlockCache = typename CacheTypes::InputProcessBlockCache
 
using LuminosityBlockCache = typename CacheTypes::LuminosityBlockCache
 
using LuminosityBlockContext = LuminosityBlockContextT< LuminosityBlockCache, RunCache, GlobalCache >
 
using LuminosityBlockSummaryCache = typename CacheTypes::LuminosityBlockSummaryCache
 
using RunCache = typename CacheTypes::RunCache
 
using RunContext = RunContextT< RunCache, GlobalCache >
 
using RunSummaryCache = typename CacheTypes::RunSummaryCache
 

Public Member Functions

void analyze (const edm::Event &, const edm::EventSetup &) override
 
 NanoAODDQM (const edm::ParameterSet &)
 
- Public Member Functions inherited from DQMEDAnalyzer
void accumulate (edm::Event const &event, edm::EventSetup const &setup) final
 
void beginLuminosityBlock (edm::LuminosityBlock const &lumi, edm::EventSetup const &setup) final
 
void beginRun (edm::Run const &run, edm::EventSetup const &setup) final
 
void beginStream (edm::StreamID id) final
 
virtual void dqmBeginRun (edm::Run const &, edm::EventSetup const &)
 
 DQMEDAnalyzer ()
 
void endLuminosityBlock (edm::LuminosityBlock const &lumi, edm::EventSetup const &setup) final
 
void endRun (edm::Run const &run, edm::EventSetup const &setup) final
 
virtual bool getCanSaveByLumi ()
 
- Public Member Functions inherited from edm::stream::EDProducer< edm::GlobalCache< DQMEDAnalyzerGlobalCache >, edm::EndRunProducer, edm::EndLuminosityBlockProducer, edm::Accumulator >
 EDProducer ()=default
 
 EDProducer (const EDProducer &)=delete
 
bool hasAbilityToProduceInBeginLumis () const final
 
bool hasAbilityToProduceInBeginProcessBlocks () const final
 
bool hasAbilityToProduceInBeginRuns () const final
 
bool hasAbilityToProduceInEndLumis () const final
 
bool hasAbilityToProduceInEndProcessBlocks () const final
 
bool hasAbilityToProduceInEndRuns () const final
 
const EDProduceroperator= (const EDProducer &)=delete
 

Protected Member Functions

void bookHistograms (DQMStore::IBooker &, edm::Run const &, edm::EventSetup const &) override
 
- Protected Member Functions inherited from DQMEDAnalyzer
uint64_t meId () const
 

Static Private Member Functions

static std::unique_ptr< PlotmakePlot (DQMStore::IBooker &booker, const edm::ParameterSet &cfg)
 

Private Attributes

std::map< std::string,
GroupConfig
groups_
 

Additional Inherited Members

- Static Public Member Functions inherited from DQMEDAnalyzer
static void globalEndJob (DQMEDAnalyzerGlobalCache const *)
 
static void globalEndLuminosityBlockProduce (edm::LuminosityBlock &lumi, edm::EventSetup const &setup, LuminosityBlockContext const *context)
 
static void globalEndRunProduce (edm::Run &run, edm::EventSetup const &setup, RunContext const *context)
 
static std::unique_ptr
< DQMEDAnalyzerGlobalCache
initializeGlobalCache (edm::ParameterSet const &)
 
- Protected Attributes inherited from DQMEDAnalyzer
edm::EDPutTokenT< DQMTokenlumiToken_
 
edm::EDPutTokenT< DQMTokenrunToken_
 
unsigned int streamId_
 

Detailed Description

Definition at line 38 of file NanoAODDQM.cc.

Member Typedef Documentation

Definition at line 40 of file NanoAODDQM.cc.

Constructor & Destructor Documentation

NanoAODDQM::NanoAODDQM ( const edm::ParameterSet iConfig)

Definition at line 191 of file NanoAODDQM.cc.

References cuts, edm::ParameterSet::getParameter(), edm::ParameterSet::getParameterNamesForType(), watchdog::group, groups_, mergeVDriftHistosByStation::name, TrackValidation_cff::pset, AlCaHLTBitMon_QueryRunRegistry::string, and nanoDQM_cff::vplots.

191  {
192  const edm::ParameterSet &vplots = iConfig.getParameter<edm::ParameterSet>("vplots");
194  auto &group = groups_[name];
195  const auto &pset = vplots.getParameter<edm::ParameterSet>(name);
196  group.plotPSets = pset.getParameter<std::vector<edm::ParameterSet>>("plots");
197  group.selGroups.emplace_back(); // no selection (all entries)
198  const auto &cuts = pset.getParameter<edm::ParameterSet>("sels");
199  for (const std::string &cname : cuts.getParameterNamesForType<std::string>()) {
200  group.selGroups.emplace_back(cname, cuts.getParameter<std::string>(cname));
201  }
202  }
203  consumesMany<FlatTable>();
204 }
std::vector< std::string > getParameterNamesForType(bool trackiness=true) const
Definition: ParameterSet.h:179
TkSoA const *__restrict__ CAHitNtupletGeneratorKernelsGPU::QualityCuts cuts
std::map< std::string, GroupConfig > groups_
Definition: NanoAODDQM.cc:188
tuple group
Definition: watchdog.py:82
T getParameter(std::string const &) const
Definition: ParameterSet.h:303

Member Function Documentation

void NanoAODDQM::analyze ( const edm::Event iEvent,
const edm::EventSetup  
)
overridevirtual

Reimplemented from DQMEDAnalyzer.

Definition at line 228 of file NanoAODDQM.cc.

References nanoaod::FlatTable::addExtension(), edm::Event::getManyByType(), groups_, isotrackNtupler::merged, mergeVDriftHistosByStation::name, bigModule::plot(), EgammaValidation_Wenu_cff::sel, AlCaHLTBitMon_QueryRunRegistry::string, and postprocess-scan-build::tables.

228  {
229  std::vector<edm::Handle<FlatTable>> alltables;
230  iEvent.getManyByType(alltables);
231  std::map<std::string, std::pair<const FlatTable *, std::vector<const FlatTable *>>> maintables;
232 
233  for (const auto &htab : alltables) {
234  if (htab->extension())
235  continue;
236  maintables[htab->name()] = std::make_pair(htab.product(), std::vector<const FlatTable *>());
237  }
238  for (const auto &htab : alltables) {
239  if (htab->extension()) {
240  if (maintables.find(htab->name()) == maintables.end())
241  throw cms::Exception("LogicError", "Missing main table for " + htab->name());
242  maintables[htab->name()].second.push_back(htab.product());
243  }
244  }
245 
247  for (auto &pair : groups_) {
248  const std::string &name = pair.first;
249  if (maintables.find(name) == maintables.end())
250  continue; // may happen for missing collections
251  auto &tables = maintables[name];
252  const FlatTable *table = tables.first;
253  if (!tables.second.empty()) {
254  merged = *tables.first;
255  for (auto *other : tables.second) {
256  merged.addExtension(*other);
257  }
258  table = &merged;
259  }
260  std::vector<bool> selbits;
261  for (auto &sel : pair.second.selGroups) {
262  sel.fillSel(*table, selbits);
263 
264  for (auto &plot : sel.plots) {
265  plot->fill(*table, selbits);
266  }
267  }
268  }
269 }
nanoaod::FlatTable FlatTable
Definition: NanoAODDQM.cc:40
void getManyByType(std::vector< Handle< PROD >> &results) const
Definition: Event.h:530
def plot
Definition: bigModule.py:18
std::map< std::string, GroupConfig > groups_
Definition: NanoAODDQM.cc:188
void NanoAODDQM::bookHistograms ( DQMStore::IBooker booker,
edm::Run const &  ,
edm::EventSetup const &   
)
overrideprotectedvirtual

Implements DQMEDAnalyzer.

Definition at line 206 of file NanoAODDQM.cc.

References looper::cfg, DeadROC_duringRun::dir, groups_, makePlot(), eostools::move(), bigModule::plot(), L1TEGammaDiff_cfi::plots, dqm::implementation::NavigatorBase::setCurrentFolder(), and AlCaHLTBitMon_QueryRunRegistry::string.

206  {
207  booker.setCurrentFolder("Physics/NanoAODDQM");
208 
209  for (auto &pair : groups_) {
210  booker.setCurrentFolder("Physics/NanoAODDQM/" + pair.first);
211  for (auto &sels : pair.second.selGroups) {
212  std::string dir("Physics/NanoAODDQM/" + pair.first);
213  if (!sels.nullCut())
214  dir += "/" + sels.name;
215  booker.setCurrentFolder(dir);
216  auto &plots = sels.plots;
217  plots.clear();
218  plots.reserve(pair.second.plotPSets.size());
219  for (const auto &cfg : pair.second.plotPSets) {
220  auto plot = makePlot(booker, cfg);
221  if (plot)
222  plots.push_back(std::move(plot));
223  }
224  }
225  }
226 }
tuple cfg
Definition: looper.py:296
virtual void setCurrentFolder(std::string const &fullpath)
Definition: DQMStore.cc:32
static std::unique_ptr< Plot > makePlot(DQMStore::IBooker &booker, const edm::ParameterSet &cfg)
Definition: NanoAODDQM.cc:148
def plot
Definition: bigModule.py:18
std::map< std::string, GroupConfig > groups_
Definition: NanoAODDQM.cc:188
def move
Definition: eostools.py:511
static std::unique_ptr<Plot> NanoAODDQM::makePlot ( DQMStore::IBooker booker,
const edm::ParameterSet cfg 
)
inlinestaticprivate

Definition at line 148 of file NanoAODDQM.cc.

References looper::cfg, Exception, edm::ParameterSet::getParameter(), class-composition::kind, and AlCaHLTBitMon_QueryRunRegistry::string.

Referenced by bookHistograms().

148  {
149  const std::string &kind = cfg.getParameter<std::string>("kind");
150  if (kind == "none")
151  return nullptr;
152  if (kind == "count1d")
153  return std::make_unique<Count1D>(booker, cfg);
154  if (kind == "hist1d")
155  return std::make_unique<Plot1D>(booker, cfg);
156  if (kind == "prof1d")
157  return std::make_unique<Profile1D>(booker, cfg);
158  throw cms::Exception("Configuration", "Unsupported plot kind '" + kind + "'");
159  }
tuple cfg
Definition: looper.py:296
T getParameter(std::string const &) const
Definition: ParameterSet.h:303

Member Data Documentation

std::map<std::string, GroupConfig> NanoAODDQM::groups_
private

Definition at line 188 of file NanoAODDQM.cc.

Referenced by analyze(), bookHistograms(), and NanoAODDQM().