forked from sckao/Acoustic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAnaInput.h
executable file
·78 lines (57 loc) · 1.66 KB
/
AnaInput.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
#ifndef AnaInput_H
#define AnaInput_H
#include "TObject.h"
#include <vector>
#include <stdio.h>
#include <stdlib.h>
#include <iostream>
#include <sstream>
#include <fstream>
#include <string>
#include <math.h>
#include <TMath.h>
#include <TH1.h>
#include <TH2.h>
#include <THStack.h>
#include <TFile.h>
#include <TChain.h>
#include <TTree.h>
#include <TBranch.h>
#include <TLeaf.h>
#include <TString.h>
#include <TSystem.h>
#include <TLorentzVector.h>
using namespace std;
struct mes{
double time ;
double p1 ;
double p2 ;
double p3 ;
double c ;
int idx ;
} ;
//class AnaInput : public TObject {
class AnaInput {
public:
~AnaInput();
static AnaInput* Instance() ;
void SetDatacard( string datacardInput ) ;
void GetParameters( string paraName, int* thePara, string cfgFile = "" );
void GetParameters( string paraName, double* thePara, string cfgFile ="" );
void GetParameters( string paraName, string* thePara, string cfgFile ="" );
void GetParameters( string paraName, vector<double>* thePara, string cfgFile = "" );
void GetParameters( string paraName, vector<string>* thePara, string cfgFile = "" );
void GetParameters( string paraName, vector<int>* thePara, string cfgFile = "" );
int ReadMES( string fileName, vector<mes>& dataV ) ;
void ReadMESInfo( string fileName, string paraName, vector<double>& thePara ) ;
void ReadMES1( string fileName ) ; // example method
private:
//AnaInput( string datacardInput = "DataCard.txt" );
AnaInput();
string datacardfile ;
static AnaInput* m_Instance;
//ClassDef(AnaInput, 1);
};
//#if !defined(__CINT__)
// ClassImp(AnaInput);
#endif