]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - TRD/AliTRDhit.h
Make code compliant to coding conventions
[u/mrichter/AliRoot.git] / TRD / AliTRDhit.h
index 2003167605c8efe12d41d10a80c5c2ed94610f62..05aea9a6c2a91eaaeea924aeeef48d194ee7f629 100644 (file)
@@ -1,5 +1,5 @@
-#ifndef TRDhit_H
-#define TRDhit_H
+#ifndef ALITRDHIT_H
+#define ALITRDHIT_H
 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
  * See cxx source for full Copyright notice                               */
 
 
 //_____________________________________________________________________________
 class AliTRDhit : public AliHit {
-
  public:
 
+  AliTRDhit();
+  AliTRDhit(Int_t shunt, Int_t track, Int_t *det, Float_t *hits);
+  virtual ~AliTRDhit();
+
+          Int_t   GetDetector() { return fDetector; };
+          Float_t GetCharge()   { return fQ;        };
+
+ protected:
+
   Int_t        fDetector;   // TRD detector number
   Float_t      fQ;          // Charge created by a hit (slow simulator only)
  
- public:
-
-  AliTRDhit() {}
-  AliTRDhit(Int_t shunt, Int_t track, Int_t det, Float_t *hits);
-  virtual ~AliTRDhit() {};
   ClassDef(AliTRDhit,2)     // Hit for the Transition Radiation Detector
 
 };