#ifndef MARS_MRflSinglePhoton #define MARS_MRflSinglePhoton #ifndef MARS_MParContainer #include "MParContainer.h" #endif class MRflSinglePhoton : public MParContainer { private: Float_t fX; // [mm] camera impact point Float_t fY; // [mm] camera impact point Float_t fCosU; // [1] camera direction cosine Float_t fCosV; // [1] camera direction cosine Float_t fTime; // [ns] arrival time Float_t fHeight; // [cm] production height Float_t fPhi; // [rad] camera inc. angle (rad) public: void SetXY(Float_t x, Float_t y) { fX = x; fY=y; } void SetCosUV(Float_t u, Float_t v) { fCosU = u; fCosV=v; } void SetTime(Float_t t) { fTime = t; } void SetHeight(Float_t h) { fHeight = h; } void SetInclinationAngle(Float_t phi) { fPhi = phi; } Float_t GetX() const { return fX; } Float_t GetY() const { return fY; } void Print(Option_t *o="") const; ClassDef(MRflSinglePhoton, 0) // Single Photon of a event from the reflector program }; #endif