LArSoft  v07_13_02
Liquid Argon Software toolkit - http://larsoft.org/
RootEnv.h
Go to the documentation of this file.
1 #ifndef EVDB_ROOTENV_H
9 #define EVDB_ROOTENV_H
10 class TRint;
11 
12 namespace evdb {
14  class RootEnv {
15  public:
16  RootEnv(int argc, char** argv);
17  ~RootEnv();
18 
19  int Run();
20 
21  private:
22  void SetStyle();
23  void InterpreterConfig();
24  void SignalConfig();
25  void LoadIncludes();
26  void LoadClasses();
27 
28  private:
29  };
30 }
31 #endif // EVDROOTENV_H
32 
void LoadIncludes()
Definition: RootEnv.cxx:132
Manage all things related to colors for the event display.
Configure the ROOT environment.
Definition: RootEnv.h:14
void SetStyle()
Definition: RootEnv.cxx:209
void SignalConfig()
Definition: RootEnv.cxx:104
void InterpreterConfig()
Definition: RootEnv.cxx:91
void LoadClasses()
Definition: RootEnv.cxx:191
RootEnv(int argc, char **argv)
Definition: RootEnv.cxx:30