Skip to content

Commit

Permalink
Changed preprocessor to access only DAQ FXS (not HLT) when option TRY is
Browse files Browse the repository at this point in the history
selected in the configuration entry.
  • Loading branch information
haavardh committed Dec 8, 2014
1 parent 1362067 commit 6704a11
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions TPC/Base/AliTPCPreprocessor.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,7 @@ UInt_t AliTPCPreprocessor::Process(TMap* dcsAliasMap)
pulserSource[1] = AliShuttleInterface::kDAQ;
}
if (source == "DAQHLT" ) numSources=2;
if (source == "TRY" ) numSources=2;
if (source == "TRY" ) numSources=1;
UInt_t pulserResult=0;
for (Int_t i=0; i<numSources; i++ ) {
pulserResult = ExtractPulser(pulserSource[i]);
Expand Down Expand Up @@ -428,7 +428,7 @@ UInt_t AliTPCPreprocessor::Process(TMap* dcsAliasMap)
rawSource[1] = AliShuttleInterface::kDAQ;
}
if (source == "DAQHLT" ) numSources=2;
if (source == "TRY" ) numSources=2;
if (source == "TRY" ) numSources=1;
UInt_t rawResult=0;
for (Int_t i=0; i<numSources; i++ ) {
rawResult = ExtractRaw(rawSource[i]);
Expand Down Expand Up @@ -472,7 +472,7 @@ UInt_t AliTPCPreprocessor::Process(TMap* dcsAliasMap)
ceSource[1] = AliShuttleInterface::kDAQ;
}
if (source == "DAQHLT" ) numSources=2;
if (source == "TRY" ) numSources=2;
if (source == "TRY" ) numSources=1;
UInt_t ceResult=0;
for (Int_t i=0; i<numSources; i++ ) {
ceResult = ExtractCE(ceSource[i]);
Expand All @@ -499,7 +499,7 @@ UInt_t AliTPCPreprocessor::Process(TMap* dcsAliasMap)
qaSource[1] = AliShuttleInterface::kDAQ;
}
if (source == "DAQHLT" ) numSources=2;
if (source == "TRY" ) numSources=2;
if (source == "TRY" ) numSources=1;
UInt_t qaResult=0;
for (Int_t i=0; i<numSources; i++ ) {
qaResult = ExtractQA(qaSource[i]);
Expand Down

0 comments on commit 6704a11

Please sign in to comment.