X-Git-Url: http://git.uio.no/git/?a=blobdiff_plain;f=STEER%2FAliShuttleInterface.cxx;h=8d3b4e788779fa1db80c1deec58b7141a42012a6;hb=8a388651941575d0d81dbbd7401e24826ccbf3b7;hp=8e17d616ccd4d721f2a63e962dfaf55789b4f821;hpb=14b34be5224b457fde05f66806516b3111f4dcc0;p=u%2Fmrichter%2FAliRoot.git diff --git a/STEER/AliShuttleInterface.cxx b/STEER/AliShuttleInterface.cxx index 8e17d616ccd..8d3b4e78877 100644 --- a/STEER/AliShuttleInterface.cxx +++ b/STEER/AliShuttleInterface.cxx @@ -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); -}