-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathAnaInput.h
More file actions
executable file
·91 lines (67 loc) · 2.01 KB
/
Copy pathAnaInput.h
File metadata and controls
executable file
·91 lines (67 loc) · 2.01 KB
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
78
79
80
81
82
83
84
85
86
87
88
89
90
#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>
//#include "WFormat.h"
//#define MAXPHO 10
//#define MAXVTX 10
/*
#define MAXPHO 12
#define MAXVTX 30
#define MAXJET 15
#define MAXMU 5
#define MAXELE 5
#define MAXGEN 20
*/
using namespace std;
typedef pair<int, TLorentzVector> objID ;
// some definitions of global functions
bool badCrystal( double eta, double phi ) ;
class AnaInput : public TObject {
public:
~AnaInput();
static AnaInput* Instance() ;
void SetDatacard( string datacardInput ) ;
void LinkForests( TString treeName ) ;
void GetForest( string DataSet, TString treeName );
TTree* TreeMap( string fileName ) ;
TTree* GetTree( string fName, TString treeName, TFile* file = NULL );
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 = "" );
vector<double> NormalizeComponents( string cfgFile = "" );
double RecoWeight( double pT, double ct ) ;
private:
//AnaInput( string datacardInput = "DataCard.txt" );
AnaInput();
string datacardfile ;
vector<TTree*> forestData ;
vector<TTree*> forestMC ;
static AnaInput* m_Instance;
//ClassDef(AnaInput, 1);
};
//#if !defined(__CINT__)
// ClassImp(AnaInput);
#endif