X-Git-Url: http://git.uio.no/git/?a=blobdiff_plain;f=PHOS%2FAliPHOS.h;h=079ed452dd557194109ebf93a5384c43672e5356;hb=d5b302a6cc4645b860a5a72ae5080e3c2dbf0a65;hp=b79044ee39961803bdadb121d6bcb51d1f8aa2b2;hpb=431a92112f9f927bfbba614270fa326f8b342cb5;p=u%2Fmrichter%2FAliRoot.git diff --git a/PHOS/AliPHOS.h b/PHOS/AliPHOS.h index b79044ee399..079ed452dd5 100644 --- a/PHOS/AliPHOS.h +++ b/PHOS/AliPHOS.h @@ -7,6 +7,18 @@ /* History of cvs commits: * * $Log$ + * Revision 1.73 2007/08/07 14:12:03 kharlov + * Quality assurance added (Yves Schutz) + * + * Revision 1.72 2007/02/13 10:52:08 policheh + * Raw2SDigits() implemented + * + * Revision 1.71 2007/02/05 10:43:25 hristov + * Changes for correct initialization of Geant4 (Mihaela) + * + * Revision 1.70 2007/01/17 17:28:56 kharlov + * Extract ALTRO sample generation to a separate class AliPHOSPulseGenerator + * * Revision 1.69 2006/11/14 17:11:15 hristov * Removing inheritances from TAttLine, TAttMarker and AliRndm in AliModule. The copy constructor and assignment operators are moved to the private part of the class and not implemented. The corresponding changes are propagated to the detectors * @@ -55,6 +67,7 @@ class TRandom ; #include "AliLog.h" #include "AliPHOSGeometry.h" #include "AliPHOSTrigger.h" +class AliPHOSCalibData ; class AliPHOS : public AliDetector { @@ -73,13 +86,14 @@ public: virtual AliDigitizer* CreateDigitizer(AliRunDigitizer* manager) const; virtual void CreateMaterials() ; virtual void Digits2Raw(); + virtual Bool_t Raw2SDigits(AliRawReader* rawReader); virtual void FinishRun() {;} virtual AliPHOSGeometry * GetGeometry() const {return AliPHOSGeometry::GetInstance(GetTitle(),"") ; } virtual void Hits2SDigits(); virtual Int_t IsVersion(void) const = 0 ; - + virtual void Init(); virtual AliTriggerDetector* CreateTriggerDetector() const { return new AliPHOSTrigger(); } @@ -91,6 +105,9 @@ public: AliPHOS(AliPHOS & phos); AliPHOS & operator = (const AliPHOS & /*rvalue*/); + protected: + AliPHOSCalibData * fgCalibData ; //! Pointer to Calibration DB + ClassDef(AliPHOS,6) // Photon Spectrometer Detector (base class) } ;