X-Git-Url: http://git.uio.no/git/?a=blobdiff_plain;f=STEER%2FAliShuttleInterface.cxx;h=527df5d12498c25f35df53686e7b777756bfb8c8;hb=c973e857bf38543c4c517c6cf58f9f7f9c60bb7e;hp=2ab7d333172e5f301594941c889fd63b9dd8c008;hpb=b2eec76046190cb4829b97f0daccb5023a268ccb;p=u%2Fmrichter%2FAliRoot.git diff --git a/STEER/AliShuttleInterface.cxx b/STEER/AliShuttleInterface.cxx index 2ab7d333172..527df5d1249 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){ } //______________________________________________________________________________________________ -const Int_t AliShuttleInterface::GetDetPos(const char* detName){ +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 @@ const 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); -}