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
edmtest::DQMXMLFileEventSetupAnalyzer Class Reference
Inheritance diagram for edmtest::DQMXMLFileEventSetupAnalyzer:
edm::EDAnalyzer edm::EDConsumerBase

Public Member Functions

virtual void analyze (const edm::Event &event, const edm::EventSetup &setup) override
 
virtual void beginRun (edm::Run const &, edm::EventSetup const &) override
 
 DQMXMLFileEventSetupAnalyzer (const edm::ParameterSet &pset)
 
 DQMXMLFileEventSetupAnalyzer (int i)
 
virtual ~DQMXMLFileEventSetupAnalyzer ()
 
- 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 Attributes

bool init_
 
std::string labelToGet_
 

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

Definition at line 22 of file DQMXMLFileEventSetupAnalyzer.cc.

Constructor & Destructor Documentation

edmtest::DQMXMLFileEventSetupAnalyzer::DQMXMLFileEventSetupAnalyzer ( const edm::ParameterSet pset)
explicit

Definition at line 34 of file DQMXMLFileEventSetupAnalyzer.cc.

References edm::false, and init_.

34  :labelToGet_(ps.getParameter<std::string>("labelToGet")) {
35  init_ = false ;
36  //std::cout << "DQMXMLFileEventSetupAnalyzer(const edm::ParameterSet &ps)" << std::endl;
37  }
volatile std::atomic< bool > shutdown_flag false
edmtest::DQMXMLFileEventSetupAnalyzer::DQMXMLFileEventSetupAnalyzer ( int  i)
explicit

Definition at line 39 of file DQMXMLFileEventSetupAnalyzer.cc.

References edm::false, and init_.

39  {
40  init_ = false ;
41  //std::cout << "DQMXMLFileEventSetupAnalyzer(int i) " << i << std::endl;
42  }
volatile std::atomic< bool > shutdown_flag false
edmtest::DQMXMLFileEventSetupAnalyzer::~DQMXMLFileEventSetupAnalyzer ( )
virtual

Definition at line 44 of file DQMXMLFileEventSetupAnalyzer.cc.

References edm::false, and init_.

45  {
46  init_ = false ;
47  //std::cout << "~DQMXMLFileEventSetupAnalyzer" << std::endl;
48  }
volatile std::atomic< bool > shutdown_flag false

Member Function Documentation

void edmtest::DQMXMLFileEventSetupAnalyzer::analyze ( const edm::Event event,
const edm::EventSetup setup 
)
overridevirtual

Implements edm::EDAnalyzer.

Definition at line 50 of file DQMXMLFileEventSetupAnalyzer.cc.

References mathSSE::return().

51  {
52  return ;
53  }
return((rh^lh)&mask)
void edmtest::DQMXMLFileEventSetupAnalyzer::beginRun ( edm::Run const &  run,
edm::EventSetup const &  iSetup 
)
overridevirtual

Reimplemented from edm::EDAnalyzer.

Definition at line 55 of file DQMXMLFileEventSetupAnalyzer.cc.

References Exception, edm::eventsetup::heterocontainer::HCTypeTag::findType(), edm::EventSetup::get(), init_, labelToGet_, AlCaHLTBitMon_QueryRunRegistry::string, funct::true, and edm::eventsetup::EventSetupRecordKey::type().

56  {
57  //std::cout << "DQMXMLFileEventSetupAnalyzer::beginRun()" << std::endl;
58  if(!init_)
59  {
60  init_ = true ;
62  if(recordKey.type() == edm::eventsetup::EventSetupRecordKey::TypeTag()) {
63  throw cms::Exception ("Record not found") << "Record \"DQMXMLFileRcd"
64  << "\" does not exist!" << std::endl;
65  }
67  iSetup.get<DQMXMLFileRcd>().get(labelToGet_,rootgeo);
68  //std::cout<<"XML FILE IN MEMORY 1 with label " << labelToGet_ <<std::endl;
69  std::unique_ptr<std::vector<unsigned char> > tb1( (*rootgeo).getUncompressedBlob() );
70  //here you can implement the stream for putting the TFile on disk...
71  std::string outfile1("XML1_retrieved.xml") ;
72  std::ofstream output1(outfile1.c_str()) ;
73  output1.write((const char *)&(*tb1)[0], tb1->size());
74  output1.close() ;
75 
76 // iSetup.get<DQMXMLFileRcd>().get("XML2_mio",rootgeo);
77 // std::cout<<"ROOT FILE IN MEMORY 2"<<std::endl;
78 // std::unique_ptr<std::vector<unsigned char> > tb2( (*rootgeo).getUncompressedBlob() );
79 // //here you can implement the stream for putting the TFile on disk...
80 // std::string outfile2("XML2_retrieved.xml") ;
81 // std::ofstream output2(outfile2.c_str()) ;
82 // output2.write((const char *)&(*tb2)[0], tb2->size());
83 // output2.close() ;
84  // std::unique_ptr<std::vector<unsigned char> > tb( (*rootgeo).getUncompressedBlob() );
85  }
86  }
heterocontainer::HCTypeTag TypeTag
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

Member Data Documentation

bool edmtest::DQMXMLFileEventSetupAnalyzer::init_
private
std::string edmtest::DQMXMLFileEventSetupAnalyzer::labelToGet_
private

Definition at line 31 of file DQMXMLFileEventSetupAnalyzer.cc.

Referenced by beginRun().