-
Notifications
You must be signed in to change notification settings - Fork 82
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #158 from gianipez/otsMerge1
updates to the DAQ modules
- Loading branch information
Showing
33 changed files
with
1,592 additions
and
17,682 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
# -*- mode: tcl -*- | ||
# | ||
# Define sequences for track based triggers. The sequences for hit preparation | ||
# and the tracking modules configuration must preceede these and are defined elsewhere | ||
# original author: Dave Brown (LBNL) Mar. 7 2017 | ||
# | ||
BEGIN_PROLOG | ||
# define the filter modules used for track-based trigger | ||
# filter to require a minimum # of hits in a time slot | ||
DAQ : { | ||
producers : { | ||
binaryOutput: { | ||
# module_type : BinaryPacketsFromDataBlocks | ||
module_type : ArtBinaryPacketsFromDigis | ||
strawDigiCollection : "makeSD" | ||
caloDigiCollection : "CaloDigiFromShower" | ||
diagLevel : 0 | ||
maxFullPrint : 0 | ||
|
||
includeTracker : 1 | ||
includeCalorimeter : 1 | ||
includeDMAHeaders: 1 | ||
|
||
generateTimestampTable : 0 | ||
tableFile : "tsTable.bin" | ||
timestampOffset : 0 | ||
|
||
generateBinaryFile : 1 | ||
outputFile : "DTC_packets.bin" | ||
maxDMABlockSize : 32000 | ||
bufferSize : 1000 | ||
} | ||
|
||
makeSD: | ||
{ | ||
module_type: StrawAndCaloDigisFromFragments | ||
diagLevel: 0 | ||
parseCAL: 0 | ||
parseTRK: 1 | ||
|
||
trkTag : "daq:trk" | ||
caloTag : "daq:calo" | ||
} | ||
|
||
CaloDigiFromShower: | ||
{ | ||
module_type: StrawAndCaloDigisFromFragments | ||
diagLevel: 0 | ||
parseCAL: 1 | ||
parseTRK: 0 | ||
|
||
trkTag : "daq:trk" | ||
caloTag : "daq:calo" | ||
} | ||
|
||
CrvDigi: | ||
{ | ||
module_type: CrvDigisFromFragments | ||
diagLevel: 0 | ||
crvTag : "daq:crv" | ||
} | ||
} | ||
} | ||
END_PROLOG |
Oops, something went wrong.