7 : filename_( filename ) {
fill(); }
16 std::cout <<
"CSCTriggerMappingFromFile: ERROR! Failed to open file containing mapping, " <<
21 std::cout <<
"CSCTriggerMappingFromFile: opened file containing mapping, " <<
24 while ( getline(
in, line) ) {
26 if ( line[0] != commentFlag[0] ) {
27 int i1, i2, i3, i4, i5, i6, i7, i8, i9, i10;
28 std::istringstream is( line );
29 is >> i1 >> i2 >> i3 >> i4 >> i5 >> i6 >> i7 >> i8 >> i9 >> i10;
30 if (
debugV() )
std::cout << i1 <<
" " << i2 <<
" " << i3 <<
" " << i4 <<
" " 31 << i5 <<
" " << i6 <<
" " << i7 <<
" " << i8 <<
" " 32 << i9 <<
" " << i10 << std::endl;
33 addRecord( i1, i2, i3, i4, i5, i6, i7, i8, i9 , i10);
void addRecord(int rendcap, int rstation, int rsector, int rsubsector, int rcscid, int cendcap, int cstation, int csector, int csubsector, int ccscid)
void fill(void) override
Fill mapping store.
CSCTriggerMappingFromFile()
~CSCTriggerMappingFromFile() override
Destructor.