Skip to content
Snippets Groups Projects
Commit 515fc40c authored by Gesner Passos's avatar Gesner Passos Committed by Zhou, Wenduo
Browse files

Correct the incorrect assumption of detectordotdat file

Although present almost always, according to the control group, the phi
column is the first of the User optional column. So, we can not suppose
it is there.

re #8003
parent 7259e7be
No related branches found
No related tags found
No related merge requests found
...@@ -168,8 +168,10 @@ namespace DataHandling ...@@ -168,8 +168,10 @@ namespace DataHandling
continue; continue;
} }
// First six columns in the file, the detector ID and a code for the type of detector CODE = 3 (psd gas tube) // First five columns in the file, the detector ID and a code for the type of detector CODE = 3 (psd gas tube)
istr >> detID >> offset >> dump >> code >> dump >> dump; istr >> detID >> offset >> dump >> code >> dump;
if (numColumns > 5)
istr >> dump; // get phi
if( code == 3 ){ if( code == 3 ){
// This is detector will look for it in workspace and if found use its position // This is detector will look for it in workspace and if found use its position
...@@ -187,7 +189,9 @@ namespace DataHandling ...@@ -187,7 +189,9 @@ namespace DataHandling
oss.precision(pOffset); oss.precision(pOffset);
oss << std::setw(wDet) << detID << std::setw(wOff) << offset; oss << std::setw(wDet) << detID << std::setw(wOff) << offset;
oss.precision(pOther); oss.precision(pOther);
oss << std::setw(wRad) << l2 << std::setw(wCode) << code << std::setw(wAng) << theta << std::setw(wAng) << phi ; oss << std::setw(wRad) << l2 << std::setw(wCode) << code << std::setw(wAng) << theta << std::setw(wAng);
if (numColumns > 5)
oss << phi ; // insert phi
std::string prefix = oss.str(); std::string prefix = oss.str();
std::string suffix = str.substr( width, std::string::npos ); std::string suffix = str.substr( width, std::string::npos );
out << prefix << suffix << "\n"; out << prefix << suffix << "\n";
......
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