#include "RawBeamData.h"Go to the source code of this file.
Functions | |
| string | unpad (string s) |
|
|
Definition at line 11 of file RawBeamData.cxx. References s(). Referenced by RawBeamData::RawBeamData(). 00012 {
00013 string out="";
00014 for (size_t ind=0; ind<8 && ind<s.size(); ++ind) {
00015 char c = s[ind];
00016 if (c == '[') break;
00017 if (c == ' ') break;
00018 out.push_back(c);
00019 }
00020 return out;
00021 }
|
1.3.9.1