]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - STEER/AliShuttleInterface.cxx
kHMPID added.
[u/mrichter/AliRoot.git] / STEER / AliShuttleInterface.cxx
index 8e17d616ccd4d721f2a63e962dfaf55789b4f821..8d3b4e788779fa1db80c1deec58b7141a42012a6 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"};
 
 // 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"};
 
 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){
@@ -72,7 +72,7 @@ const char* AliShuttleInterface::GetDetName(UInt_t detPos){
 }
 
 //______________________________________________________________________________________________
-Int_t AliShuttleInterface::GetDetPos(const char* detName){
+const Int_t AliShuttleInterface::GetDetPos(const char* detName){
 // Return detector position in the detector code array
 
        for(UInt_t iDet=0; iDet < kNDetectors; iDet++){
@@ -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);
-}