X-Git-Url: http://git.uio.no/git/?a=blobdiff_plain;ds=sidebyside;f=MUON%2FAliMUONPadInfo.h;h=69913dc87b3f3481024b9dc83b53fcf4353830f1;hb=ce996d1300dc5422cc8c8de3dcbe66230df73cb0;hp=8a62a58d3c704fcb0270f097def5d1bee56ee516;hpb=faa8d9217cb2742a8816fc4faab87da19844bb74;p=u%2Fmrichter%2FAliRoot.git diff --git a/MUON/AliMUONPadInfo.h b/MUON/AliMUONPadInfo.h index 8a62a58d3c7..69913dc87b3 100644 --- a/MUON/AliMUONPadInfo.h +++ b/MUON/AliMUONPadInfo.h @@ -6,8 +6,9 @@ // $Id$ +/// \ingroup calign /// \class AliMUONPadInfo -/// \brief Class to summarize ESD data at cluster +/// \brief Class to summarize ESD data at pad // Author Philippe Pillot, Subatech @@ -40,6 +41,10 @@ public: Int_t GetManuChannel() const {return (fPadId & 0x3F000000) >> 24;} /// Return the cathode number, part of the uniqueID Int_t GetCathode() const {return (fPadId & 0x40000000) >> 30;} + /// Return the plane type 0=Bending 1=NonBending + Int_t GetPadPlaneType() const {return fPadPlaneType;} + /// Set the plane type 0=Bending 1=NonBending + void SetPadPlaneType(Int_t planeType) {fPadPlaneType = planeType;} /// Set pad coordinates (cm) void SetPadXY(Double_t x, Double_t y) {fPadX = x; fPadY = y;} @@ -99,6 +104,7 @@ protected: // pad info UInt_t fPadId; ///< pad ID + Int_t fPadPlaneType; ///< pad plane tye (0=Bending; 1=NonBending) Double32_t fPadX; ///< pad X position Double32_t fPadY; ///< pad Y position Double32_t fPadDimX; ///< pad X dimension @@ -116,7 +122,7 @@ protected: Int_t fGainThres; ///< threshold of quadratic behaviour of gain Int_t fGainQual; ///< quality of gain parameters - ClassDef(AliMUONPadInfo, 1) + ClassDef(AliMUONPadInfo, 2) //Class to summarize ESD data at pad }; #endif