Skip to content
Snippets Groups Projects
Commit 30af21a7 authored by Mark K Jones's avatar Mark K Jones Committed by GitHub
Browse files

Merge pull request #238 from MarkKJones/scint-fix

Modify THcScintillatorPlane::Clear
parents 29bc9954 cdb54857
No related branches found
No related tags found
No related merge requests found
...@@ -506,15 +506,15 @@ void THcScintillatorPlane::Clear( Option_t* ) ...@@ -506,15 +506,15 @@ void THcScintillatorPlane::Clear( Option_t* )
//Clear Good TDC Variables //Clear Good TDC Variables
for (UInt_t ielem = 0; ielem < fGoodPosTdcTimeUnCorr.size(); ielem++) { for (UInt_t ielem = 0; ielem < fGoodPosTdcTimeUnCorr.size(); ielem++) {
fGoodPosTdcTimeUnCorr.at(ielem) = 0.0; fGoodPosTdcTimeUnCorr.at(ielem) = kBig;
fGoodPosTdcTimeCorr.at(ielem) = 0.0; fGoodPosTdcTimeCorr.at(ielem) = kBig;
fGoodPosTdcTimeTOFCorr.at(ielem) = 0.0; fGoodPosTdcTimeTOFCorr.at(ielem) = kBig;
} }
for (UInt_t ielem = 0; ielem < fGoodNegTdcTimeUnCorr.size(); ielem++) { for (UInt_t ielem = 0; ielem < fGoodNegTdcTimeUnCorr.size(); ielem++) {
fGoodNegTdcTimeUnCorr.at(ielem) = 0.0; fGoodNegTdcTimeUnCorr.at(ielem) = kBig;
fGoodNegTdcTimeCorr.at(ielem) = 0.0; fGoodNegTdcTimeCorr.at(ielem) = kBig;
fGoodNegTdcTimeTOFCorr.at(ielem) = 0.0; fGoodNegTdcTimeTOFCorr.at(ielem) = kBig;
} }
......
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