]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - STEER/AliShuttleInterface.cxx
removerd double filling of histogram
[u/mrichter/AliRoot.git] / STEER / AliShuttleInterface.cxx
index 8e17d616ccd4d721f2a63e962dfaf55789b4f821..ba3ae1c17375df5d81cc517dab0e0c2f520e8052 100644 (file)
@@ -32,11 +32,11 @@ const char* AliShuttleInterface::fkSystemNames[3] = { "DAQ", "DCS", "HLT" };
 
 // names of the detectors preprocessors
 const char* AliShuttleInterface::fgkDetName[kNDetectors] = {"SPD", "SDD", "SSD", "TPC", "TRD", "TOF",
-       "PHS", "CPV", "HMP", "EMC", "MCH", "MTR", "FMD", "ZDC", "PMD", "T00", "V00", "GRP"};
+       "PHS", "CPV", "HMP", "EMC", "MCH", "MTR", "FMD", "ZDC", "PMD", "T00", "V00", "GRP", "HLT", "ACO", "TRI"};
 
 // names of the detectors in OCDB
 const char* AliShuttleInterface::fgkOfflineDetName[kNDetectors] = {"ITS", "ITS", "ITS", "TPC", "TRD", "TOF",
-       "PHOS", "PHOS", "HMPID", "EMCAL", "MUON", "MUON", "FMD", "ZDC", "PMD", "T0", "VZERO", "GRP"};
+       "PHOS", "PHOS", "HMPID", "EMCAL", "MUON", "MUON", "FMD", "ZDC", "PMD", "T0", "VZERO", "GRP", "HLT", "ACORDE", "TRIGGER"};
 
 TString AliShuttleInterface::fgkMainCDB("alien://folder=ShuttleCDB");
 TString AliShuttleInterface::fgkLocalCDB("local://LocalShuttleCDB");
@@ -44,7 +44,7 @@ TString AliShuttleInterface::fgkMainRefStorage("alien://folder=ShuttleReference"
 TString AliShuttleInterface::fgkLocalRefStorage("local://LocalReferenceStorage");
 
 TString AliShuttleInterface::fgkShuttleTempDir("/tmp");
-TString AliShuttleInterface::fgkShuttleLogDir("/tmp");
+TString AliShuttleInterface::fgkShuttleLogDir("/tmp/log");
 
 //______________________________________________________________________________________________
 const char* AliShuttleInterface::GetOfflineDetName(const char* detName){
@@ -80,19 +80,3 @@ Int_t AliShuttleInterface::GetDetPos(const char* detName){
        }
        return -1;
 }
-
-//______________________________________________________________________________________________
-void AliShuttleInterface::SetShuttleTempDir(const char* tmpDir)
-{
-// sets Shuttle temp directory
-
-       fgkShuttleTempDir = gSystem->ExpandPathName(tmpDir);
-}
-
-//______________________________________________________________________________________________
-void AliShuttleInterface::SetShuttleLogDir(const char* logDir)
-{
-// sets Shuttle log directory
-
-       fgkShuttleLogDir = gSystem->ExpandPathName(logDir);
-}