Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
5d42144090 | ||
|
d119acb37e |
17
.vscode/c_cpp_properties.json
vendored
Normal file
17
.vscode/c_cpp_properties.json
vendored
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
{
|
||||||
|
"configurations": [
|
||||||
|
{
|
||||||
|
"name": "Hades",
|
||||||
|
"includePath": [
|
||||||
|
"${workspaceFolder}/**",
|
||||||
|
"/usr/local/cern/root_v6.26.06/include/**"
|
||||||
|
],
|
||||||
|
"defines": [],
|
||||||
|
"compilerPath": "/usr/bin/gcc",
|
||||||
|
"cStandard": "c17",
|
||||||
|
"cppStandard": "gnu++17",
|
||||||
|
"intelliSenseMode": "linux-gcc-x64"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"version": 4
|
||||||
|
}
|
|
@ -328,8 +328,8 @@ void Digitizer::StartACQ(){
|
||||||
if ( AcqRun ) return;
|
if ( AcqRun ) return;
|
||||||
|
|
||||||
unsigned int bufferSize = CalByteForBuffer();
|
unsigned int bufferSize = CalByteForBuffer();
|
||||||
if( bufferSize > 80 * 1024 * 1024 ){
|
if( bufferSize > 160 * 1024 * 1024 ){
|
||||||
printf("============= buffer size bigger than 80 MB");
|
printf("============= buffer size bigger than 160 MB");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
# Please check the FSUDAQ_Qt6. This code is no longer developing.
|
||||||
|
|
||||||
# Recent development
|
# Recent development
|
||||||
|
|
||||||
Tested the ClassDigitizer.h/C for very high rate data recording for single and multiple digitizers, each digitizer has 5 inputs from a pulser. In the condition without trace and Extra2, Max Events per aggregation = 1032 and Max aggregations per BLT = 80. it can run at 100k without problem.
|
Tested the ClassDigitizer.h/C for very high rate data recording for single and multiple digitizers, each digitizer has 5 inputs from a pulser. In the condition without trace and Extra2, Max Events per aggregation = 1032 and Max aggregations per BLT = 80. it can run at 100k without problem.
|
||||||
|
|
Loading…
Reference in New Issue
Block a user