3 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
7 // Revision of includes 07/05/2004
11 /// \brief AliDetector class for MUON subsystem which implements
12 /// functions for simulation
16 #include <TLorentzVector.h>
23 class AliMUONv1 : public AliMUON
27 AliMUONv1(const char *name, const char* title = "default");
29 virtual void CreateGeometry();
30 virtual void CreateMaterials();
31 virtual void AddAlignableVolumes() const;
34 /// Return the version number of this detector
35 virtual Int_t IsVersion() const {return 1;}
37 virtual void StepManager();
39 /// Set option to take into account angle effect
40 void SetAngleEffect(Bool_t Opt)
41 { fAngleEffect = Opt; }
43 /// Set max step max in active gas
44 void SetStepMaxInActiveGas(Float_t StepMax)
45 {fStepMaxInActiveGas = StepMax; }
49 AliMUONv1(const AliMUONv1& right);
51 AliMUONv1& operator = (const AliMUONv1& right);
53 virtual Int_t GetGeomModuleId(Int_t volId) const;
54 TString CurrentVolumePath() const;
56 Bool_t fAngleEffect; ///< Angle Effect along wires, Default is true
57 Float_t fStepMaxInActiveGas; ///< Step max in active gas default 0.6cm
60 Float_t * fStepSum; //!< Sum of track steps per chamber
61 Float_t * fDestepSum; //!< Sum of energy deposits per chamber
63 TLorentzVector fTrackMomentum; ///< Momentum of the particle entering in the active gas of chamber
64 TLorentzVector fTrackPosition; ///< Position of the particle exiting the active gas of chamber
65 TF1 * fElossRatio; ///< Ratio of particle mean eloss with respect MIP's
66 TF1 * fAngleEffect10; ///< Angle effect in tracking chambers at theta =10 degres as a function of ElossRatio (Khalil BOUDJEMLINE sep 2003 Ph.D Thesis) (in micrometers)
67 TF1 * fAngleEffectNorma;///< Angle effect: Normalisation form theta=10 degres to theta between 0 and 10 (Khalil BOUDJEMLINE sep 2003 Ph.D Thesis)
69 ClassDef(AliMUONv1,5) // MUON Detector class Version 1