X-Git-Url: http://git.uio.no/git/?a=blobdiff_plain;f=MUON%2FAliMUONResponseTriggerV1.h;h=74761bed9dbec3083e97b55556a26a1f4d50dfe9;hb=66942c814b2cc9c16e73d09c3eb3c8528bcddf58;hp=7cdae7328d066b16136f3b4fedc67e7010d72ddc;hpb=337c904103b35cd3498e28863dfb9aab148149ee;p=u%2Fmrichter%2FAliRoot.git diff --git a/MUON/AliMUONResponseTriggerV1.h b/MUON/AliMUONResponseTriggerV1.h index 7cdae7328d0..74761bed9db 100644 --- a/MUON/AliMUONResponseTriggerV1.h +++ b/MUON/AliMUONResponseTriggerV1.h @@ -6,7 +6,12 @@ /* $Id$ */ // Revision of includes 07/05/2004 +/// \ingroup sim +/// \class AliMUONResponseTriggerV1 +/// \brief Implementation of RPC response + #include "AliMUONResponseTrigger.h" +#include "AliMUONHit.h" class AliMUONResponseTriggerV1 : public AliMUONResponseTrigger { @@ -14,26 +19,26 @@ class AliMUONResponseTriggerV1 : public AliMUONResponseTrigger // default constructor AliMUONResponseTriggerV1(); AliMUONResponseTriggerV1(Float_t hv); - virtual ~AliMUONResponseTriggerV1(){} - // Charge disintegration - virtual Float_t IntXY(AliSegmentation * segmentation); - virtual Float_t IntXY(Int_t idDE, AliMUONGeometrySegmentation * segmentation); + virtual ~AliMUONResponseTriggerV1(); // Set the GenerCluster parameter virtual Int_t SetGenerCluster(); - + + virtual void DisIntegrate(const AliMUONHit& hit, TList& digits, Float_t timeDif); + protected: - Float_t fGenerCluster; // Random number - Float_t fA; // first parameter of the cluster-size param - Float_t fB; // second parameter of the cluster-size param - Float_t fC; // third parameter of the cluster-size param + Float_t fGenerCluster; ///< Random number + Float_t fA; ///< first parameter of the cluster-size param + Float_t fB; ///< second parameter of the cluster-size param + Float_t fC; ///< third parameter of the cluster-size param private: // initialize parameters void SetParameters(Float_t hv); // parametrization of the cluster-size - Float_t FireStripProb(Float_t x4, Float_t theta); - + Float_t FireStripProb(Float_t x4, Float_t theta) const; + void Neighbours(const Int_t cath, const Int_t iX, const Int_t iY, Int_t Xlist[10], Int_t Ylist[10]) const; + ClassDef(AliMUONResponseTriggerV1,1) // Implementation of RPC response };