mirror of
https://github.com/sesps/SPS_SABRE_EventBuilder.git
synced 2025-07-04 04:58:49 -04:00
84 lines
1.6 KiB
C++
84 lines
1.6 KiB
C++
/*
|
|
ShiftMap.h
|
|
New class to act a go-between for timestamp shifts to channels. Takes in a
|
|
formated file containing data for shifts and then stores them in an unordered_map.
|
|
Key is a global compass channel (board#*16 + channel). Shifts in ps.
|
|
|
|
Note: Timestamps are now shifted in binary conversion. This means that shifts *MUST*
|
|
be stored as Long64_t types. No decimals!
|
|
|
|
Written by G.W. McCann Oct. 2020
|
|
*/
|
|
#include "ShiftMap.h"
|
|
|
|
namespace EventBuilder {
|
|
|
|
ShiftMap::ShiftMap() :
|
|
m_filename(""), m_validFlag(false)
|
|
{
|
|
}
|
|
|
|
ShiftMap::ShiftMap(const std::string& filename) :
|
|
m_filename(filename), m_validFlag(false)
|
|
{
|
|
ParseFile();
|
|
}
|
|
|
|
ShiftMap::~ShiftMap() {}
|
|
|
|
void ShiftMap::SetFile(const std::string& filename)
|
|
{
|
|
m_filename = filename;
|
|
ParseFile();
|
|
}
|
|
|
|
uint64_t ShiftMap::GetShift(int gchan)
|
|
{
|
|
if(!m_validFlag)
|
|
return 0;
|
|
|
|
auto iter = m_map.find(gchan);
|
|
if(iter == m_map.end())
|
|
return 0;
|
|
else
|
|
return iter->second;
|
|
}
|
|
|
|
void ShiftMap::ParseFile()
|
|
{
|
|
m_validFlag = false;
|
|
std::ifstream input(m_filename);
|
|
if(!input.is_open())
|
|
return;
|
|
|
|
int board, channel, gchan;
|
|
uint64_t shift;
|
|
std::string junk, temp;
|
|
|
|
std::getline(input, junk);
|
|
std::getline(input, junk);
|
|
|
|
while(input>>board)
|
|
{
|
|
input>>temp;
|
|
input>>shift;
|
|
if(temp == "all") //keyword to set all channels in this board to same shift
|
|
{
|
|
for(int i=0; i<16; i++)
|
|
{
|
|
gchan = board*16 + i;
|
|
m_map[gchan] = shift;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
channel = stoi(temp);
|
|
gchan = channel + board*16;
|
|
m_map[gchan] = shift;
|
|
}
|
|
}
|
|
|
|
m_validFlag = true;
|
|
}
|
|
|
|
} |