File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff 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 ;
You can’t perform that action at this time.
0 commit comments