Analysis Software
Documentation for sPHENIX simulation software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
PIDProbabilities.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file PIDProbabilities.h
1 #ifndef __PIDPROBABILITIES_H_
2 #define __PIDPROBABILITIES_H_
3 
4 #include <stdio.h>
5 #include <fstream>
6 #include <iostream>
7 #include <iomanip>
8 #include <sstream>
9 #include <string>
10 #include <vector>
11 
12 #include <cmath>
13 
14 class TDatabasePDG;
15 class Poisson;
16 
17 using namespace std;
18 
19 
20 // PIDProbabilities class //
21 
23 
24  private:
25 
26  public:
27 
29 
30  bool particle_probs( vector<float> angles, double momentum, double index, long double probs[4] );
31 
32  /* PDG database access object */
33  TDatabasePDG *_pdg;
35 
36 };
37 
38 #endif