// ESAF : Euso Simulation and Analysis Framework // $Id: PhotonsInAtmosphere.hh,v 1.10 2005/01/21 11:03:16 moreggia Exp $ // D. De Marco - M. Pallavicini created Jan, 20 2002 #ifndef __PHOTONSINATMOSPHERE_HH_ #define __PHOTONSINATMOSPHERE_HH_ #include "euso.hh" #include #include "EsafMsgSource.hh" class PhotonsInAtmosphere : public EsafMsgSource { public: // ctor PhotonsInAtmosphere(string); // cpy ctor PhotonsInAtmosphere(const PhotonsInAtmosphere& o) {fType = o.GetType();} // dtor virtual ~PhotonsInAtmosphere(); // get type of the child class inline string GetType() const {return fType;} protected: string fType; ClassDef(PhotonsInAtmosphere,0) }; #endif /* __PHOTONSINATMOSPHERE_HH_ */