Analysis Software
Documentation for sPHENIX simulation software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Langevin.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file Langevin.h
1 #ifndef __LANGEVIN_H__
2 #define __LANGEVIN_H__
3 
4 //===========================================================
8 //===========================================================
9 
10 #include "TH3F.h"
11 
12 class Langevin {
13  public:
14  Langevin();
15  virtual ~Langevin();
16  void ReadFile();
17  void SetDebugLevel(int n) {fDebug=n;}
18  void Make();
19  void TPCDimensions(float irad, float orad, float hzet) {fInnerRadius=irad; fOutterRadius=orad; fHalfLength=hzet;}
20  void TPCGridSize(int nr, int np, int nz) {fNRadialSteps=nr; fNAzimuthalSteps=np; fNLongitudinalSteps=nz;}
22 
23  protected:
24  void InitMaps();
25  void SaveMaps();
26  int fDebug;
27 
28  TH3F *fEr;
29  TH3F *fEp;
30  TH3F *fEz;
31  TH3F *fDeltaR;
32  TH3F *fRDeltaPHI;
33 
34  float fInnerRadius;
36  float fHalfLength;
41 };
42 
43 #endif /* __Langevin_H__ */