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
debugvalue debugit
Definition: DebugMacros.cc:10
void doBuildRealData(const std::string &name)
RootDebug(int flevel, int rlevel)
Definition: ClassFiller.h:17
bool loadCap(const std::string &name, std::vector< std::string > &missingDictionaries)
TClass * getTClass(const std::type_info &ti)
HLT enums.
void loadExtraClasses()
Definition: ClassFiller.cc:33