#ifndef ALIMUONV1_H #define ALIMUONV1_H /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. * * See cxx source for full Copyright notice */ /* $Id$ */ /* $Id$ */ ///////////////////////////////////////////////////////// // Manager and hits classes for set:MUON version 0 // ///////////////////////////////////////////////////////// #include "TLorentzVector.h" #include "AliMUON.h" class TF1; class AliMUONv1 : public AliMUON { public: AliMUONv1(); AliMUONv1(const char *name, const char *title); virtual ~AliMUONv1() {} virtual void CreateGeometry(); virtual void CreateMaterials(); virtual void Init(); virtual Int_t IsVersion() const {return 1;} virtual void StepManager(); void StepManagerOld(); void SetStepManagerVersionOld(Bool_t Opt) { fStepManagerVersionOld = Opt; } void SetStepMaxInActiveGas(Float_t StepMax) {fStepMaxInActiveGas = StepMax; } protected: Int_t* fStations; //! allow to externally set which station to create Bool_t fStepManagerVersionOld; // Version of StepManager, Default is false Float_t fStepMaxInActiveGas; // Step max in active gas default 0.6cm virtual Int_t GetChamberId(Int_t volId) const; // StepManager Float_t * fStepSum; //! Float_t * fDestepSum; //! // Momentum of the particle entering in the active gas of chamber TLorentzVector fTrackMomentum; // Position of the particle exiting the active gas of chamber TLorentzVector fTrackPosition; // Ratio of particle mean eloss with respect MIP's TF1 * fElossRatio; // Angle effect in tracking chambers at theta =10 degres as a function of ElossRatio (Khalil BOUDJEMLINE sep 2003 Ph.D Thesis) (in micrometers) TF1 * fAngleEffect10; // Angle effect: Normalisation form theta=10 degres to theta between 0 and 10 (Khalil BOUDJEMLINE sep 2003 Ph.D Thesis) TF1 * fAngleEffectNorma; private: ClassDef(AliMUONv1,1) // MUON Detector class Version 1 }; #endif