CRXS  1.0
Comic Ray Cross Section Tools
 All Classes Namespaces Functions Variables Pages
crxs.h
1 #ifndef CRXS__CRXS_H
2 #define CRXS__CRXS_H
3 
4 #include "string"
5 
6 namespace CRXS {
7 
8  enum IntegrationMethod{
9  GSL = 1,
10  TRAPEZE = 2,
11  };
12 
13  class CRXS_config{
14  public:
15  static std::string Get_CRXS_DataDir();
16  static int IntegrationMethod;
17  static void SetupIntegrationMethod( int method ){
18  IntegrationMethod=method;
19  };
20 
21  };
22 
23 
24 }
25 
26 #endif
27 
28 
29 
30 
Definition: crxs.h:13