]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
signal/LED events will be looked at for standalone runs (LED events not present in...
authordsilverm <dsilverm@f7af4fe6-9843-0410-8265-dc069ae4e863>
Wed, 18 Nov 2009 15:43:16 +0000 (15:43 +0000)
committerdsilverm <dsilverm@f7af4fe6-9843-0410-8265-dc069ae4e863>
Wed, 18 Nov 2009 15:43:16 +0000 (15:43 +0000)
EMCAL/AliEMCALPreprocessor.cxx

index 7d0eb64496a182257aafecf8a8c35e7a69ac116f..c5f750508c3bbea27a91f992069bac149e5cac09 100644 (file)
@@ -45,7 +45,7 @@ const Int_t kValCutTemp = 100;               // discard temperatures > 100 degre
 const Int_t kDiffCutTemp = 5;               // discard temperature differences > 5 degrees
 const TString kPedestalRunType = "PEDESTAL";  // pedestal run identifier
 const TString kPhysicsRunType = "PHYSICS";   // physics run identifier
-const TString kStandAloneRunType = "STANDALONE"; // standalone run identifier
+const TString kStandAloneRunType = "STANDALONE_BC"; // standalone run identifier
 const TString kAmandaTemp = "PT_%02d.Temperature"; // Amanda string for temperature entries
 //const Double_t kFitFraction = 0.7;                 // Fraction of DCS sensor fits required 
 const Double_t kFitFraction = -1.0;          // Don't require minimum number of fits during commissioning 
@@ -199,7 +199,7 @@ UInt_t AliEMCALPreprocessor::Process(TMap* dcsAliasMap)
   
   // PEDESTAL ENTRIES:
   
-  if(runType == kPedestalRunType) {
+  if (runType == kPedestalRunType || runType == kStandAloneRunType) {
     Int_t numSources = 1;
     Int_t pedestalSource[2] = {AliShuttleInterface::kDAQ, AliShuttleInterface::kHLT} ;
     TString source = fConfEnv->GetValue("Pedestal","DAQ");
@@ -226,7 +226,7 @@ UInt_t AliEMCALPreprocessor::Process(TMap* dcsAliasMap)
   
   // SIGNAL/LED ENTRIES:
   
-  if( runType == kPhysicsRunType || runType == kStandAloneRunType ) {
+  if( runType == kStandAloneRunType ) {
     Int_t numSources = 1;
     Int_t signalSource[2] = {AliShuttleInterface::kDAQ,AliShuttleInterface::kHLT} ;
     TString source = fConfEnv->GetValue("Signal","DAQ");