RootEnv.h
Go to the documentation of this file.
1 ////////////////////////////////////////////////////////////////////////
2 /// \file RootEnv.h
3 /// \brief Setup the root environment
4 ///
5 /// \version $Id: RootEnv.h,v 1.2 2011-04-05 20:50:42 messier Exp $
6 /// \author messier@indiana.edu
7 ////////////////////////////////////////////////////////////////////////
8 #ifndef EVDB_ROOTENV_H
9 #define EVDB_ROOTENV_H
10 class TRint;
11 
12 namespace evdb {
13  /// Configure the ROOT environment
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