1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
process TESTDUMPER = {
# if getting data from a raw binary file
source = DAQEcalTBInputService{
untracked vstring fileNames = { 'file:/localscratch2/franzoni/data_test/H4-000036463-SM1-LASER-STD' }
untracked int32 maxEvents = 5
untracked bool isBinary = true
}
# if getting data from a .root pool file
# source = PoolSource {
# untracked int32 maxEvents = -1
# untracked vstring fileNames={'file:/localdisk/franzoni/data/h4b.00015785.A.0.0.root'}
# untracked uint32 debugVebosity = 10
# untracked bool debugFlag = true
# }
module ecalEBunpacker = EcalDCCUnpackingModule{ }
# verbosity =0: only headings
module digi = EcalDigiDumperModule{
untracked int32 verbosity = 1
}
path p = {ecalEBunpacker, digi}
}
|