Skip to content

Commit 3482aa7

Browse files
committed
[roc-ctp-emulator] Update hbmax and bcmax defaults
1 parent 4c517e9 commit 3482aa7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/CommandLineUtilities/ProgramCtpEmulator.cxx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,10 @@ class ProgramCtpEmulator : public Program
4141
{
4242
Options::addOptionCardId(options);
4343
options.add_options()("bcmax",
44-
po::value<uint32_t>(&mOptions.bcMax)->default_value(3560),
44+
po::value<uint32_t>(&mOptions.bcMax)->default_value(3563),
4545
"Sets the maximum Bunch Crossing value");
4646
options.add_options()("hbmax",
47-
po::value<uint32_t>(&mOptions.hbMax)->default_value(8),
47+
po::value<uint32_t>(&mOptions.hbMax)->default_value(255),
4848
"Sets the maximum number of Hearteats within a Timeframe");
4949
options.add_options()("hbdrop",
5050
po::value<uint32_t>(&mOptions.hbDrop)->default_value(15000),
@@ -110,10 +110,10 @@ class ProgramCtpEmulator : public Program
110110

111111
private:
112112
struct OptionsStruct {
113-
uint32_t bcMax = 3560;
113+
uint32_t bcMax = 3563;
114114
uint32_t hbDrop = 15000;
115115
uint32_t hbKeep = 15000;
116-
uint32_t hbMax = 8;
116+
uint32_t hbMax = 255;
117117

118118
std::string triggerModeString = "periodic";
119119
uint32_t triggerFrequency = 8;

0 commit comments

Comments
 (0)