-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfunctionsForAnalysis.h
More file actions
41 lines (25 loc) · 1.01 KB
/
functionsForAnalysis.h
File metadata and controls
41 lines (25 loc) · 1.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
#ifndef _FUNCTIONS_FOR_ANALYSIS
#define _FUNCTIONS_FOR_ANALYSIS
#include <cstdlib>
#include <cstdio>
#include <iostream>
#include <fstream>
void myDashes(ostream &);
Double_t myGetPhi(Double_t, Double_t);
void myFillOverflowBin(TH1D*, const Double_t);
void myFillOverflowBinW(TH1D*, const Double_t, const Double_t);
void myDrawOverflow(const TH1D *, const char*);
void myDrawOverflow(const TH1D *, const char*, const Int_t);
TH1D * myOverflowInLastBin(const TH1D *);
void myOverflowInLastBin2(TH1D *, const TH1D *);
void myAddOverflowInLastBin(TH1D *);
Double_t myRejectionFactor(Int_t, Int_t);
Double_t myCrystalBall(double* , double* );
Double_t my2sideCrystalBall(double* , double* );
Double_t myResolutionFunction(double* , double* );
Double_t myResolutionFunctionNoB(double* , double* );
void myAddDefaultPackages(FILE *, const char* );
char myAskToSaveFile(const char*);
Int_t myGetBin(Double_t, Double_t*, Int_t);
void myPrintEventYields(ostream &, const Double_t, const Int_t, const Double_t *);
#endif