added any2many, an attempt to write the universial musr-data-file converter. Still some work needed. Added the possibility to show the t0 saved in the data file.
This commit is contained in:
@ -820,9 +820,11 @@ Int_t PMsrHandler::WriteMsrLogFile(const Bool_t messages)
|
||||
if (fRuns[runNo].GetDataRange(0) >= 0) {
|
||||
fout.width(16);
|
||||
fout << left << "data";
|
||||
for (UInt_t j=0; j<2; j++) {
|
||||
fout.width(8);
|
||||
fout << left << fRuns[runNo].GetDataRange(j);
|
||||
for (UInt_t j=0; j<4; j++) {
|
||||
if (fRuns[runNo].GetDataRange(j) > 0) {
|
||||
fout.width(8);
|
||||
fout << left << fRuns[runNo].GetDataRange(j);
|
||||
}
|
||||
}
|
||||
fout << endl;
|
||||
}
|
||||
|
Reference in New Issue
Block a user