49 IDCSim(
const unsigned int sector = 0,
const unsigned int nOrbits = 12) : mSector{sector}, mNOrbits{nOrbits} {}
57 static void setNOrbitsPerTF(
const unsigned int nOrbitsPerTF) { mOrbitsPerTF = nOrbitsPerTF; }
61 void dumpIDCs(
const char* outFileName,
const char* outName =
"IDCSim")
const;
73 const auto&
get()
const {
return mIDCs[!mBufferIndex]; }
102 void drawIDCs(
const unsigned int integrationInterval = 0,
const std::string
filename =
"IDCs.pdf")
const;
105 unsigned int getMaxIDCs(
const unsigned int region)
const {
return mMaxIDCs[region]; }
108 inline static unsigned int mOrbitsPerTF{256};
109 const unsigned int mSector{};
110 const unsigned int mNOrbits{12};
112 const bool mAddInterval{(mOrbitsPerTF % mNOrbits) > 0 ?
true : false};
113 const unsigned int mIntegrationIntervalsPerTF{mOrbitsPerTF / mNOrbits + mAddInterval};
114 const unsigned int mTimeStampsRemainder{mTimeStampsPerIntegrationInterval * (mOrbitsPerTF % mNOrbits) / mNOrbits};
116 bool mBufferIndex{
false};
117 const std::array<unsigned int, Mapper::NREGIONS> mMaxIDCs{
130 {std::vector<float>(mMaxIDCs[0]),
131 std::vector<float>(mMaxIDCs[1]),
132 std::vector<float>(mMaxIDCs[2]),
133 std::vector<float>(mMaxIDCs[3]),
134 std::vector<float>(mMaxIDCs[4]),
135 std::vector<float>(mMaxIDCs[5]),
136 std::vector<float>(mMaxIDCs[6]),
137 std::vector<float>(mMaxIDCs[7]),
138 std::vector<float>(mMaxIDCs[8]),
139 std::vector<float>(mMaxIDCs[9])},
140 {std::vector<float>(mMaxIDCs[0]),
141 std::vector<float>(mMaxIDCs[1]),
142 std::vector<float>(mMaxIDCs[2]),
143 std::vector<float>(mMaxIDCs[3]),
144 std::vector<float>(mMaxIDCs[4]),
145 std::vector<float>(mMaxIDCs[5]),
146 std::vector<float>(mMaxIDCs[6]),
147 std::vector<float>(mMaxIDCs[7]),
148 std::vector<float>(mMaxIDCs[8]),
149 std::vector<float>(mMaxIDCs[9])}
153 unsigned int getLastTimeBinForSwitch()
const;
162 unsigned int getOrbit(
const unsigned int timeStamp)
const {
return static_cast<unsigned int>((timeStamp + mTimeBinsOff) / mTimeStampsPerIntegrationInterval); }
173 ClassDefNV(IDCSim, 1)