]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TOF/AliTOFConstants.cxx
Better protection.
[u/mrichter/AliRoot.git] / TOF / AliTOFConstants.cxx
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
16 /*
17 $Log$
18 Revision 1.1  2001/11/22 11:22:51  hristov
19 Updated version of TOF digitization, N^2 problem solved (J.Chudoba)
20
21 */
22
23 ////////////////////////////////////////////////////////////////////////
24 //
25 // AliTOFConstants class
26 //
27 // This class serves to group constants needed by TOF detector in 1
28 // easily accessible place. All constants are public const static data 
29 // members. The class is never instatiated.
30 //
31 // Note: only a few constants are in the first version of this class,
32 //       more should be added by TOF developpers
33 //
34 // Author: Jiri Chudoba (CERN)
35 //
36 ////////////////////////////////////////////////////////////////////////
37
38 #include "AliTOFConstants.h"
39
40 const Int_t AliTOFConstants::fgkNStripA;
41 const Int_t AliTOFConstants::fgkNStripB;
42 const Int_t AliTOFConstants::fgkNStripC;
43 const Int_t AliTOFConstants::fgkNpadX;
44 const Int_t AliTOFConstants::fgkNpadZ;
45 const Int_t AliTOFConstants::fgkPadXSector;
46 const Int_t AliTOFConstants::fgkNSectors;
47 const Int_t AliTOFConstants::fgkNPlates;
48
49 const Int_t AliTOFConstants::fgkTimeDiff;
50
51 ClassImp(AliTOFConstants)