CMS 3D CMS Logo

ClassFiller.h
Go to the documentation of this file.
1 #ifndef IOPool_Streamer_ClassFiller_h
2 #define IOPool_Streamer_ClassFiller_h
3 
4 // -*- C++ -*-
5 
7 #include "Rtypes.h"
8 
9 #include <typeinfo>
10 #include <string>
11 #include <set>
12 #include <vector>
13 
14 namespace edm {
15  class RootDebug {
16  public:
17  RootDebug(int flevel, int rlevel) : flevel_(flevel), rlevel_(rlevel), old_(gDebug) {
18  if (flevel_ < debugit())
19  gDebug = rlevel_;
20  }
22  if (flevel_ < debugit())
23  gDebug = old_;
24  }
25 
26  private:
27  int flevel_;
28  int rlevel_;
29  int old_;
30  };
31 
32  void loadExtraClasses();
33  TClass* getTClass(const std::type_info& ti);
34  bool loadCap(const std::string& name, std::vector<std::string>& missingDictionaries);
35  void doBuildRealData(const std::string& name);
36 } // namespace edm
37 
38 #endif
edm::RootDebug
Definition: ClassFiller.h:15
edm::RootDebug::RootDebug
RootDebug(int flevel, int rlevel)
Definition: ClassFiller.h:17
edm::doBuildRealData
void doBuildRealData(const std::string &name)
Definition: ClassFiller.cc:22
edm
HLT enums.
Definition: AlignableModifier.h:19
edm::debugit
debugvalue debugit
Definition: DebugMacros.cc:10
edm::getTClass
TClass * getTClass(const std::type_info &ti)
Definition: ClassFiller.cc:63
AlCaHLTBitMon_QueryRunRegistry.string
string
Definition: AlCaHLTBitMon_QueryRunRegistry.py:256
edm::RootDebug::flevel_
int flevel_
Definition: ClassFiller.h:27
edm::RootDebug::old_
int old_
Definition: ClassFiller.h:29
edm::loadCap
bool loadCap(const std::string &name, std::vector< std::string > &missingDictionaries)
Definition: ClassFiller.cc:16
edm::RootDebug::~RootDebug
~RootDebug()
Definition: ClassFiller.h:21
edm::loadExtraClasses
void loadExtraClasses()
Definition: ClassFiller.cc:33
Skims_PA_cff.name
name
Definition: Skims_PA_cff.py:17
DebugMacros.h
edm::RootDebug::rlevel_
int rlevel_
Definition: ClassFiller.h:28