CMS 3D CMS Logo

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

#include <Workspace/PlottingDevice/src/PlottingDevice.cc>

Inheritance diagram for PlottingDevice:
edm::EDAnalyzer edm::EDConsumerBase

Public Member Functions

 PlottingDevice (const edm::ParameterSet &)
 
 ~PlottingDevice () override
 
- Public Member Functions inherited from edm::EDAnalyzer
void callWhenNewProductsRegistered (std::function< void(BranchDescription const &)> const &func)
 
 EDAnalyzer ()
 
SerialTaskQueueglobalLuminosityBlocksQueue ()
 
SerialTaskQueueglobalRunsQueue ()
 
ModuleDescription const & moduleDescription () const
 
std::string workerType () const
 
 ~EDAnalyzer () override
 
- 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
 
ESProxyIndex const * esGetTokenIndices (edm::Transition iTrans) const
 
std::vector< ESProxyIndex > const & esGetTokenIndicesVector (edm::Transition iTrans) const
 
std::vector< ESRecordIndex > const & esGetTokenRecordIndicesVector (edm::Transition iTrans) const
 
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::array< std::vector< ModuleDescription const *> *, NumBranchTypes > &modulesAll, std::vector< ModuleProcessName > &modulesInPreviousProcesses, 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 selectInputProcessBlocks (ProductRegistry const &productRegistry, ProcessBlockHelperBase const &processBlockHelperBase)
 
ProductResolverIndexAndSkipBit uncheckedIndexFrom (EDGetToken) const
 
void updateLookup (BranchType iBranchType, ProductResolverIndexHelper const &, bool iPrefetchMayGet)
 
void updateLookup (eventsetup::ESRecordsToProxyIndices const &)
 
virtual ~EDConsumerBase () noexcept(false)
 

Private Member Functions

void analyze (const edm::Event &, const edm::EventSetup &) override
 
void beginJob () override
 
void endJob () override
 

Private Attributes

std::string plotDirectoryName_
 
std::unique_ptr< Plotterplotter_
 
std::string vHelperInstance_
 

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 &)
 
static bool wantsGlobalLuminosityBlocks ()
 
static bool wantsGlobalRuns ()
 
static bool wantsInputProcessBlocks ()
 
static bool wantsProcessBlocks ()
 
static bool wantsStreamLuminosityBlocks ()
 
static bool wantsStreamRuns ()
 
- Protected Member Functions inherited from edm::EDConsumerBase
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > consumes (edm::InputTag const &tag)
 
template<BranchType B = InEvent>
EDConsumerBaseAdaptor< Bconsumes (edm::InputTag tag) noexcept
 
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 ESProduct , typename ESRecord , Transition Tr = Transition::Event>
auto esConsumes ()
 
template<typename ESProduct , typename ESRecord , Transition Tr = Transition::Event>
auto esConsumes (ESInputTag const &tag)
 
template<Transition Tr = Transition::Event>
constexpr auto esConsumes ()
 
template<Transition Tr = Transition::Event>
auto esConsumes (ESInputTag tag)
 
template<Transition Tr = Transition::Event>
ESGetTokenGeneric esConsumes (eventsetup::EventSetupRecordKey const &iRecord, eventsetup::DataKey const &iKey)
 Used with EventSetupRecord::doGet. More...
 
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)
 
void resetItemsToGetFrom (BranchType iType)
 

Detailed Description

Description: <one line="" class="" summary>="">

Implementation: <Notes on="" implementation>="">

Definition at line 37 of file PlottingDevice.cc.

Constructor & Destructor Documentation

◆ PlottingDevice()

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

Definition at line 64 of file PlottingDevice.cc.

References edm::EDConsumerBase::consumesCollector(), edm::ParameterSet::exists(), get, edm::ParameterSet::getParameter(), init, plotDirectoryName_, RecoTauValidation_cfi::plotPset, plotter_, AlCaHLTBitMon_QueryRunRegistry::string, and vHelperInstance_.

64  {
65  vHelperInstance_ = iConfig.getParameter<std::string>("@module_label");
66  plotDirectoryName_ = "PlottingDevice";
67 
68  //configure the inputtag distributor
69  if (iConfig.exists("InputTags"))
72 
73  //configure the variable helper
76 
77  //configure the plotting device
79  std::string plotterName = plotPset.getParameter<std::string>("ComponentName");
80  plotter_ = PlotterFactory::get()->create(plotterName, plotPset);
81 }
T getParameter(std::string const &) const
Definition: ParameterSet.h:303
std::string vHelperInstance_
bool exists(std::string const &parameterName) const
checks if a parameter exists
int init
Definition: HydjetWrapper.h:64
std::unique_ptr< Plotter > plotter_
ConsumesCollector consumesCollector()
Use a ConsumesCollector to gather consumes information from helper functions.
#define get
std::string plotDirectoryName_

◆ ~PlottingDevice()

PlottingDevice::~PlottingDevice ( )
override

Definition at line 83 of file PlottingDevice.cc.

83 {}

Member Function Documentation

◆ analyze()

void PlottingDevice::analyze ( const edm::Event iEvent,
const edm::EventSetup iSetup 
)
overrideprivatevirtual

Implements edm::EDAnalyzer.

Definition at line 90 of file PlottingDevice.cc.

References iEvent, plotDirectoryName_, and plotter_.

90  {
92 
94 }
std::unique_ptr< Plotter > plotter_
int iEvent
Definition: GenABIO.cc:224
std::string plotDirectoryName_

◆ beginJob()

void PlottingDevice::beginJob ( void  )
overrideprivatevirtual

Reimplemented from edm::EDAnalyzer.

Definition at line 96 of file PlottingDevice.cc.

96 {}

◆ endJob()

void PlottingDevice::endJob ( void  )
overrideprivatevirtual

Reimplemented from edm::EDAnalyzer.

Definition at line 97 of file PlottingDevice.cc.

97 {}

Member Data Documentation

◆ plotDirectoryName_

std::string PlottingDevice::plotDirectoryName_
private

Definition at line 49 of file PlottingDevice.cc.

Referenced by analyze(), and PlottingDevice().

◆ plotter_

std::unique_ptr<Plotter> PlottingDevice::plotter_
private

Definition at line 50 of file PlottingDevice.cc.

Referenced by analyze(), and PlottingDevice().

◆ vHelperInstance_

std::string PlottingDevice::vHelperInstance_
private

Definition at line 48 of file PlottingDevice.cc.

Referenced by PlottingDevice().