Compare commits

...

2 Commits

Author SHA1 Message Date
Ryan Tang 5d42144090 Update README.md 2024-07-10 14:29:54 -04:00
carina@hades d119acb37e add vscode settings 2023-04-11 10:11:00 -04:00
3 changed files with 21 additions and 2 deletions

17
.vscode/c_cpp_properties.json vendored Normal file
View 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
}

View File

@ -328,8 +328,8 @@ void Digitizer::StartACQ(){
if ( AcqRun ) return;
unsigned int bufferSize = CalByteForBuffer();
if( bufferSize > 80 * 1024 * 1024 ){
printf("============= buffer size bigger than 80 MB");
if( bufferSize > 160 * 1024 * 1024 ){
printf("============= buffer size bigger than 160 MB");
return;
}

View File

@ -1,3 +1,5 @@
# Please check the FSUDAQ_Qt6. This code is no longer developing.
# 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.