]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TOF/AliTOFConstants.cxx
Added AliTOFhitT0 class
[u/mrichter/AliRoot.git] / TOF / AliTOFConstants.cxx
CommitLineData
5919c40c 1 /**************************************************************************
2 * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
3 * *
4 * Author: The ALICE Off-line Project. *
5 * Contributors are mentioned in the code where appropriate. *
6 * *
7 * Permission to use, copy, modify and distribute this software and its *
8 * documentation strictly for non-commercial purposes is hereby granted *
9 * without fee, provided that the above copyright notice appears in all *
10 * copies and that both the copyright notice and this permission notice *
11 * appear in the supporting documentation. The authors make no claims *
12 * about the suitability of this software for any purpose. It is *
13 * provided "as is" without express or implied warranty. *
14 **************************************************************************/
15
1d9b3f6b 16/*
17$Log$
58e32bd2 18Revision 1.2 2001/11/22 11:30:30 hristov
19Correct log field
20
1d9b3f6b 21Revision 1.1 2001/11/22 11:22:51 hristov
22Updated version of TOF digitization, N^2 problem solved (J.Chudoba)
23
24*/
5919c40c 25
26////////////////////////////////////////////////////////////////////////
27//
28// AliTOFConstants class
29//
30// This class serves to group constants needed by TOF detector in 1
31// easily accessible place. All constants are public const static data
32// members. The class is never instatiated.
33//
34// Note: only a few constants are in the first version of this class,
35// more should be added by TOF developpers
36//
58e32bd2 37// Author: Jiri Chudoba (CERN), F. Pierella
5919c40c 38//
39////////////////////////////////////////////////////////////////////////
40
41#include "AliTOFConstants.h"
42
43const Int_t AliTOFConstants::fgkNStripA;
44const Int_t AliTOFConstants::fgkNStripB;
45const Int_t AliTOFConstants::fgkNStripC;
46const Int_t AliTOFConstants::fgkNpadX;
47const Int_t AliTOFConstants::fgkNpadZ;
48const Int_t AliTOFConstants::fgkPadXSector;
49const Int_t AliTOFConstants::fgkNSectors;
50const Int_t AliTOFConstants::fgkNPlates;
51
58e32bd2 52const Float_t AliTOFConstants::fgkrmin;
53const Float_t AliTOFConstants::fgkrmax;
54const Int_t AliTOFConstants::fgkmaxtoftree;
55const Int_t AliTOFConstants::fgkmaxNstrip;
56const Int_t AliTOFConstants::fgkPadXStrip;
57const Float_t AliTOFConstants::fgkzlenA;
58const Float_t AliTOFConstants::fgkzlenB;
59const Float_t AliTOFConstants::fgkzlenC;
60const Float_t AliTOFConstants::fgkXPad;
61const Float_t AliTOFConstants::fgkZPad;
62const Float_t AliTOFConstants::fgkMaxhZtof;
63const Float_t AliTOFConstants::fgkSigmaForTail1;
64const Float_t AliTOFConstants::fgkSigmaForTail2;
5919c40c 65const Int_t AliTOFConstants::fgkTimeDiff;
58e32bd2 66const Float_t AliTOFConstants::fgkSpeedOfLight;
67const Float_t AliTOFConstants::fgkPionMass;
68const Float_t AliTOFConstants::fgkKaonMass;
69const Float_t AliTOFConstants::fgkProtonMass;
70const Float_t AliTOFConstants::fgkElectronMass;
71const Float_t AliTOFConstants::fgkMuonMass;
5919c40c 72ClassImp(AliTOFConstants)