Skip to content
This repository has been archived by the owner on Jun 12, 2019. It is now read-only.

Commit

Permalink
[vme reco] print alignment constants at the begin
Browse files Browse the repository at this point in the history
  • Loading branch information
ThorbenQuast committed Nov 15, 2018
1 parent 5aa0aed commit c738171
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions RawToDigi/plugins/HGCalTBCAENSource.cc
Original file line number Diff line number Diff line change
Expand Up @@ -735,15 +735,15 @@ void HGCalTBWireChamberSource::ReadAlignmentParameters(int fileIndex) {
if (readCounter == 4) readCounter = -1;
}

#ifdef DEBUG

std::cout << "Min run: " << minRun << " Max run: " << maxRun << std::endl;
for (int i = 0; i < 4; i++) {
std::cout << "Alignment parameter: " << i * 100 + 11 << ": " << _parameters[i * 100 + 11] << std::endl;
std::cout << "Alignment parameter: " << i * 100 + 12 << ": " << _parameters[i * 100 + 12] << std::endl;
std::cout << "Alignment parameter: " << i * 100 + 21 << ": " << _parameters[i * 100 + 21] << std::endl;
std::cout << "Alignment parameter: " << i * 100 + 22 << ": " << _parameters[i * 100 + 22] << std::endl;
}
#endif

loadedAlignmentParameters[std::make_pair(minRun, maxRun)] = _parameters;

return ReadAlignmentParameters(fileIndex + 1);
Expand Down

0 comments on commit c738171

Please sign in to comment.