]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
settings for raw data simulation updated: muon trigger MUTR (ID: 10), FMD (ID: 10...
authortkuhr <tkuhr@f7af4fe6-9843-0410-8265-dc069ae4e863>
Fri, 30 Jul 2004 15:04:02 +0000 (15:04 +0000)
committertkuhr <tkuhr@f7af4fe6-9843-0410-8265-dc069ae4e863>
Fri, 30 Jul 2004 15:04:02 +0000 (15:04 +0000)
STEER/AliModule.cxx
STEER/AliSimulation.cxx

index 231d46b0e64f7866fddef1ce64ec4b0a16d5a786..83a1bd8e785e039b155675a90d4f3f7ec4619386 100644 (file)
@@ -840,9 +840,9 @@ void AliModule::Digits2Raw()
 
   Warning("Digits2Raw", "Dummy version called for %s", GetName());
 
-  const Int_t kNDetectors = 16;
-  const char* kDetectors[kNDetectors] = {"TPC", "ITSSPD", "ITSSDD", "ITSSSD", "TRD", "TOF", "PHOS", "RICH", "EMCAL", "MUON", "FMD", "ZDC", "PMD", "START", "VZERO", "CRT"};
-  const Int_t kDetectorDDLs[kNDetectors] = {216, 20, 12, 16, 18, 72, 20, 5, 22, 20, 1, 1, 6, 1, 1};
+  const Int_t kNDetectors = 17;
+  const char* kDetectors[kNDetectors] = {"TPC", "ITSSPD", "ITSSDD", "ITSSSD", "TRD", "TOF", "PHOS", "RICH", "EMCAL", "MUON", "MUTR", "ZDC", "PMD", "START", "VZERO", "CRT", "FMD"};
+  const Int_t kDetectorDDLs[kNDetectors] = {216, 20, 12, 16, 18, 72, 20, 20, 22, 20, 2, 1, 6, 1, 1, 1, 1};
   Int_t nDDLs = 1;
   Int_t ddlOffset = 0;
   for (Int_t i = 0; i < kNDetectors; i++) {
index 1de1f86f92ebf9a003ba6e08f85ad82756bfb8a2..b930e8c6b933047a91ad3a3d22eaa6a5d150ffdb 100644 (file)
@@ -651,19 +651,22 @@ Bool_t AliSimulation::ConvertRawFilesToDate(const char* dateFileName)
 // convert raw data DDL files to a DATE file with the program "dateStream"
 
   // DATE setup
-  const Int_t kNDetectors = 16;
+  const Int_t kNDetectors = 17;
   const char* kDetectors[kNDetectors] = {"TPC", "ITSSPD", "ITSSDD", "ITSSSD", 
                                          "TRD", "TOF", "PHOS", "RICH", 
-                                         "EMCAL", "MUON", "FMD", "ZDC", 
-                                         "PMD", "START", "VZERO", "CRT"};
+                                         "EMCAL", "MUON", "MUTR", "ZDC", 
+                                         "PMD", "START", "VZERO", "CRT",
+                                         "FMD"};
   const Int_t kDetectorDDLs[kNDetectors]   = {216, 20, 12, 16, 
-                                              18, 72, 20, 5, 
-                                              22, 20, 1, 1, 
-                                              6, 1, 1, 1};
+                                              18, 72, 20, 20, 
+                                              22, 20, 2, 1, 
+                                              6, 1, 1, 1,
+                                              1};
   const Float_t kDetectorLDCs[kNDetectors] = {46, 2, 2, 1, 
                                               4, 2, 1, 2, 
-                                              1, 2, 0.5, 0.5,
-                                              1, 0.5, 0.5, 1};
+                                              1, 2, 1, 1,
+                                              1, 0.5, 0.5, 1,
+                                              1};
 
   char* path = gSystem->Which(gSystem->Getenv("PATH"), "dateStream");
   if (!path) {