]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TRD/AliTRDhit.h
Correct number of particles in "FINAL" option. (FCA, Ch. Oppedisano)
[u/mrichter/AliRoot.git] / TRD / AliTRDhit.h
CommitLineData
8230f242 1#ifndef ALITRDHIT_H
2#define ALITRDHIT_H
6f1e466d 3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
6/* $Id: AliTRDhit.h,v */
7
8////////////////////////////////////////////////
9// Hit class for the TRD //
10////////////////////////////////////////////////
11
12#include "AliHit.h"
13
14//_____________________________________________________________________________
15class AliTRDhit : public AliHit {
793ff80c 16
6f1e466d 17 public:
18
8230f242 19 AliTRDhit();
793ff80c 20 AliTRDhit(Int_t shunt, Int_t track, Int_t det, Float_t *hits, Int_t q);
8230f242 21 virtual ~AliTRDhit();
22
793ff80c 23 Int_t GetDetector() const { return fDetector; };
24 Int_t GetCharge() const { return fQ; };
8230f242 25
26 protected:
27
793ff80c 28 UShort_t fDetector; // TRD detector number
29 Short_t fQ; // Charge created by a hit. TR signals are negative.
30
31 ClassDef(AliTRDhit,3) // Hit for the Transition Radiation Detector
6f1e466d 32
33};
34
35#endif