1 #ifndef ALITRDCLUSTERMI_H
2 #define ALITRDCLUSTERMI_H
3 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
8 ///////////////////////////////////////////////////////////////////////////////
10 // TRD cluster, alternative version //
12 ///////////////////////////////////////////////////////////////////////////////
14 #include "AliTRDcluster.h"
17 class AliTRDclusterMI : public AliTRDcluster {
22 AliTRDclusterMI(const AliTRDcluster &c);
24 void SetRmsY(Float_t rmsy) { fRmsY = rmsy; }
25 void SetNPads(Int_t npads) { fNPads = npads; }
26 void SetRelPos(Float_t pos) { fRelPos = TMath::Nint(pos*128.0); }
28 Float_t GetRmsY() const { return fRmsY; }
29 Char_t GetNPads() const { return fNPads; }
30 Float_t GetRelPos() const { return float(fRelPos)/128.0; }
34 Float_t fRmsY; // RMS in y direction ????
35 Char_t fNPads; // Number of pads ????
36 Char_t fRelPos; // Relative position ????
38 ClassDef(AliTRDclusterMI,2) // ClusterMI for the TRD