Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-05 08:15:12

0001 //===========================================================
0002 /// \file sChargeMap.h
0003 /// \brief Objects that tracks the charge density at all times
0004 /// \author Carlos Perez Lara
0005 //===========================================================
0006 
0007 #include "TH3D.h"
0008 
0009 class sChargeMap {
0010  public:
0011   sChargeMap(int, float, float, int, float, float, int, float, float, float);
0012   virtual ~sChargeMap() {}
0013   void Fill(float, float, float, float);
0014   void Propagate(float);
0015   void ScreenShot(char *, char*, int);
0016   void SaveIonMap(char *);
0017   void SaveRho(char *,int,int,int);
0018 
0019  protected:
0020   TH3D *fI;
0021   TH3D *fE;
0022   float fEcmperus;
0023   float fIcmperms;
0024 };