fixed a typo: Atoi() instead of Atof().

This commit is contained in:
suter_a 2024-03-16 15:34:00 +01:00
parent 495f02c3c6
commit 44456c49e9

View File

@ -1076,7 +1076,7 @@ Bool_t TMusrRunHeader::ExtractHeaderInformation(TObjArray *headerInfo, TString r
} }
for (Int_t i=0; i<tokens->GetEntries(); i++) { for (Int_t i=0; i<tokens->GetEntries(); i++) {
ostr = dynamic_cast<TObjString*>(tokens->At(i)); ostr = dynamic_cast<TObjString*>(tokens->At(i));
dvec.push_back(ostr->GetString().Atoi()); dvec.push_back(ostr->GetString().Atof());
} }
if (tokens) { if (tokens) {
delete tokens; delete tokens;