LArSoft  v09_90_00
Liquid Argon Software toolkit - https://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:129
Manage all things related to colors for the event display.
Configure the ROOT environment.
Definition: RootEnv.h:14
void SetStyle()
Definition: RootEnv.cxx:206
void SignalConfig()
Definition: RootEnv.cxx:101
void InterpreterConfig()
Definition: RootEnv.cxx:88
void LoadClasses()
Definition: RootEnv.cxx:188
RootEnv(int argc, char **argv)
Definition: RootEnv.cxx:29