]> git.uio.no Git - u/mrichter/AliRoot.git/blame_incremental - MUON/AliMUONResponseTriggerV1.h
Removing clustering from here as it is now driven by the tracking, whatever the track...
[u/mrichter/AliRoot.git] / MUON / AliMUONResponseTriggerV1.h
... / ...
CommitLineData
1#ifndef ALIMUONRESPONSETRIGGERV1_H
2#define ALIMUONRESPONSETRIGGERV1_H
3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
6/* $Id$ */
7// Revision of includes 07/05/2004
8
9/// \ingroup sim
10/// \class AliMUONResponseTriggerV1
11/// \brief Implementation of RPC response
12
13#include "AliMUONResponseTrigger.h"
14#include "AliMUONHit.h"
15
16class AliMUONResponseTriggerV1 : public AliMUONResponseTrigger
17{
18 public:
19 // default constructor
20 AliMUONResponseTriggerV1();
21 AliMUONResponseTriggerV1(Float_t hv);
22 virtual ~AliMUONResponseTriggerV1();
23
24 // Set the GenerCluster parameter
25 virtual Int_t SetGenerCluster();
26
27 virtual void DisIntegrate(const AliMUONHit& hit, TList& digits);
28
29 protected:
30 Float_t fGenerCluster; ///< Random number
31 Float_t fA; ///< first parameter of the cluster-size param
32 Float_t fB; ///< second parameter of the cluster-size param
33 Float_t fC; ///< third parameter of the cluster-size param
34
35 private:
36 // initialize parameters
37 void SetParameters(Float_t hv);
38 // parametrization of the cluster-size
39 Float_t FireStripProb(Float_t x4, Float_t theta) const;
40 void Neighbours(const Int_t cath, const Int_t iX, const Int_t iY, Int_t Xlist[10], Int_t Ylist[10]);
41
42 ClassDef(AliMUONResponseTriggerV1,1) // Implementation of RPC response
43
44};
45#endif
46
47
48
49
50
51
52
53
54
55
56
57
58