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 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 ()
 
- 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
 
 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 Member Functions

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

Private Attributes

std::string plotDirectoryName_
 
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 &)
 
- 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 38 of file PlottingDevice.cc.

Constructor & Destructor Documentation

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

Definition at line 66 of file PlottingDevice.cc.

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

67 {
68  vHelperInstance_ = iConfig.getParameter<std::string>("@module_label");
69  plotDirectoryName_="PlottingDevice";
70 
71  //configure the inputtag distributor
72  if (iConfig.exists("InputTags"))
74 
75  //configure the variable helper
77 
78  //configure the plotting device
80  std::string plotterName = plotPset.getParameter<std::string>("ComponentName");
81  plotter_ = PlotterFactory::get()->create(plotterName, plotPset);
82 }
T getParameter(std::string const &) const
Plotter * plotter_
std::string vHelperInstance_
int init
Definition: HydjetWrapper.h:67
bool exists(std::string const &parameterName) const
checks if a parameter exists
ConsumesCollector consumesCollector()
Use a ConsumesCollector to gather consumes information from helper functions.
std::string plotDirectoryName_
T get(const Candidate &c)
Definition: component.h:55
PlottingDevice::~PlottingDevice ( )

Definition at line 85 of file PlottingDevice.cc.

85 {}

Member Function Documentation

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

Implements edm::EDAnalyzer.

Definition at line 94 of file PlottingDevice.cc.

References Plotter::fill(), plotDirectoryName_, plotter_, and Plotter::setDir().

95 {
97 
99 }
Plotter * plotter_
std::string plotDirectoryName_
virtual void fill(std::string subDir, const edm::Event &iEvent)=0
virtual void setDir(std::string dir)=0
void PlottingDevice::beginJob ( void  )
overrideprivatevirtual

Reimplemented from edm::EDAnalyzer.

Definition at line 102 of file PlottingDevice.cc.

102 {}
void PlottingDevice::endJob ( void  )
overrideprivatevirtual

Reimplemented from edm::EDAnalyzer.

Definition at line 103 of file PlottingDevice.cc.

103 {}

Member Data Documentation

std::string PlottingDevice::plotDirectoryName_
private

Definition at line 51 of file PlottingDevice.cc.

Referenced by analyze(), and PlottingDevice().

Plotter* PlottingDevice::plotter_
private

Definition at line 52 of file PlottingDevice.cc.

Referenced by analyze(), and PlottingDevice().

std::string PlottingDevice::vHelperInstance_
private

Definition at line 50 of file PlottingDevice.cc.

Referenced by PlottingDevice().