]> git.uio.no Git - u/mrichter/AliRoot.git/blob - RAW/AliDAQConfig.h
new digitization and reconstruction corresponded to new data format
[u/mrichter/AliRoot.git] / RAW / AliDAQConfig.h
1 #ifndef ALIDAQCONFIG_H
2 #define ALIDAQCONFIG_H
3 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4  * See cxx source for full Copyright notice                               */
5
6 //////////////////////////////////////////////////////////////////////////////
7 //                                                                          //
8 // The header file contains all the information about the DAQ configuration.//
9 // This includes the number of DDLs and LDC per sub-detector readout system.//
10 // This header file is to be included inside DATE.                          //
11 //                                                                          //
12 //////////////////////////////////////////////////////////////////////////////
13
14 static const int kNDetectors = 18;
15
16 static const char* kDetectors[kNDetectors] = {"TPC", "ITSSPD", "ITSSDD", "ITSSSD", 
17                                               "TRD", "TOF", "PHOS", "RICH", 
18                                               "EMCAL", "MUON", "MUTR", "ZDC", 
19                                               "PMD", "START", "VZERO", "CRT",
20                                               "FMD","TRIG"};
21 static const int kDetectorDDLs[kNDetectors]   = {216, 20, 12, 16, 
22                                                  18, 72, 20, 20, 
23                                                  22, 20, 2, 1, 
24                                                  6, 1, 1, 1,
25                                                  3,1};
26 static const float kDetectorLDCs[kNDetectors] = {46, 2, 2, 1, 
27                                                  4, 2, 1, 2, 
28                                                  1, 2, 1, 1,
29                                                  1, 0.5, 0.5, 1,
30                                                  1,1};
31
32
33 #endif