Analysis Software
Documentation for sPHENIX simulation software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
sChargeMap.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file sChargeMap.h
1 //===========================================================
5 //===========================================================
6 
7 #include "TH3D.h"
8 
9 class sChargeMap {
10  public:
11  sChargeMap(int, float, float, int, float, float, int, float, float, float);
12  virtual ~sChargeMap() {}
13  void Fill(float, float, float, float);
14  void Propagate(float);
15  void ScreenShot(char *, char*, int);
16  void SaveIonMap(char *);
17  void SaveRho(char *,int,int,int);
18 
19  protected:
20  TH3D *fI;
21  TH3D *fE;
22  float fEcmperus;
23  float fIcmperms;
24 };