Skip to content
Snippets Groups Projects
Commit 9ef53129 authored by hallc-online's avatar hallc-online Committed by Mark K Jones
Browse files

Fix typo in THcTrigDet.cxx

parent a4f28135
No related branches found
No related tags found
No related merge requests found
......@@ -173,9 +173,8 @@ THaAnalysisObject::EStatus THcTrigDet::Init(const TDatime& date) {
if (status) {
fStatus = status;
return fStatus;
}
}
// Fill in detector map.
string EngineDID = string(GetApparatus()->GetName()).substr(0, 1) + GetName();
std::transform(EngineDID.begin(), EngineDID.end(), EngineDID.begin(), ::toupper);
......@@ -338,8 +337,8 @@ Int_t THcTrigDet::ReadDatabase(const TDatime& date) {
DBRequest list2[]={
{"_AdcTimeWindowMin", fAdcTimeWindowMin, kDouble, (UInt_t) fNumAdc, 1},
{"_AdcTimeWindowMax", fAdcTimeWindowMax, kDouble, (UInt_t) fNumAdc, 1},
{"_TdcTimeWindowMin", fTdcTimeWindowMin, kDouble, (UInt_t) fNumAdc, 1},
{"_TdcTimeWindowMax", fTdcTimeWindowMax, kDouble, (UInt_t) fNumAdc, 1},
{"_TdcTimeWindowMin", fTdcTimeWindowMin, kDouble, (UInt_t) fNumTdc, 1},
{"_TdcTimeWindowMax", fTdcTimeWindowMax, kDouble, (UInt_t) fNumTdc, 1},
{0}
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment