Back to home page

sPhenix code displayed by LXR

 
 

    


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

0001 #ifndef __QPILEUPTOY_H__
0002 #define __QPILEUPTOY_H__
0003 
0004 //===========================================================
0005 /// \file QpileUpToy.h
0006 /// \brief Initial charge density from phenomenological model
0007 /// \author Carlos Perez Lara
0008 //===========================================================
0009 
0010 #include "QPileUp.h"
0011 
0012 class QPileUpToy:public QPileUp {
0013  public:
0014   QPileUpToy(float gasf/*[Vs]*/, float mult, float rate/*[Hz]*/, float eps, float rad=2.0);
0015   virtual void Make();
0016 
0017  protected:
0018   float fGasFactor;
0019   float fMultiplicity;
0020   float fDAQRate;
0021   float fEPS;
0022   float fRad;
0023 };
0024 
0025 #endif /* __QPILEUPTOY_H__ */