]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - TRD/AliTRDv0.h
Updated SDigitizer; Added AliTOFanalyzeSDigits.C macro
[u/mrichter/AliRoot.git] / TRD / AliTRDv0.h
index 8f7782a59b663c7a1308c176d38f21ef290453a1..d40a7255eb94bf6da4bd23fcbad776a7077bc691 100644 (file)
@@ -1,5 +1,5 @@
-#ifndef TRDv0_H
-#define TRDv0_H
+#ifndef ALITRDV0_H
+#define ALITRDV0_H
 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
  * See cxx source for full Copyright notice                               */
 
  
 #include "AliTRD.h"
 
+class AliTRDsim;
+
 //_____________________________________________________________________________ 
 class AliTRDv0 : public AliTRD {
 
  public:
 
-  AliTRDv0() {};
+  AliTRDv0();
   AliTRDv0(const char *name, const char *title);
-  ~AliTRDv0() {};
-  virtual void    CreateGeometry();
-  virtual void    CreateMaterials();
-  virtual Int_t   IsVersion() const { return 0; };
-  virtual void    StepManager();
-  virtual void    Init();
+  virtual ~AliTRDv0();
 
-  virtual void    SetHits(Int_t ihit = 1) { fHitsOn = ihit; };
+  virtual void       CreateGeometry();
+  virtual void       CreateMaterials();
+  virtual Int_t      IsVersion() const           { return 0; };
+  virtual void       StepManager();
+  virtual void       Init();
 
-          void    SetSensChamber(Int_t ichamber) { };
-          void    SetSensPlane(Int_t iplane)     { };
-          void    SetSensSector(Int_t isector)   { };
+  virtual void       SetHits()                   { fHitsOn = 1; };
 
-          Int_t   GetSensChamber() { return 0; };
-          Int_t   GetSensPlane()   { return 0; };
-          Int_t   GetSensSector()  { return 0; };
+          void       SetSensChamber(Int_t )      { };
+          void       SetSensPlane(Int_t )        { };
+          void       SetSensSector(Int_t )       { };
+          void       SetSensSector(Int_t ,Int_t) { };
 
- protected:
+          Int_t      GetSensChamber() const      { return 0; };
+          Int_t      GetSensPlane() const        { return 0; };
+          Int_t      GetSensSector() const       { return 0; };
+          Int_t      GetSensSectorRange() const  { return 0; };
 
-  Int_t        fIdSens;     // Sensitive volume identifier
+          AliTRDsim *CreateTR()                  { return 0; };
+          AliTRDsim *GetTR() const               { return 0; };
 
-  Int_t        fIdChamber1; // Driftchamber volume identifier
-  Int_t        fIdChamber2; // 
-  Int_t        fIdChamber3; // 
+ protected:
 
   Int_t        fHitsOn;     // Used to switch hits on
 
-  ClassDef(AliTRDv0,1)      // Transition Radiation Detector version 0 (fast simulator)
+  ClassDef(AliTRDv0,2)      // Transition Radiation Detector version 0 (fast simulator)
 
 };