nfsp-butcher.fcl
Go to the documentation of this file.
1 process_name: Butcher
2 physics :{
3  producers: {
4  butcher : {
5  module_type : "EventButcher"
6 
7  // took about two hours to figure out the syntax for these
8  // tags. Answer seems to only exist in the PDF manual
9 
10  inRawTag: "nfsp:raw:"
11  inSigTag: "nfsp:gauss:"
12  ndrop: 1600
13  nkeep: 6400
14  sigscale: 0.005
15  }
16  }
17 
18  p1 : [ butcher ]
19  outputFiles : [ out ]
20 
21  trigger_paths : [ p1 ]
22  end_paths: [ outputFiles ]
23 }
24 outputs: {
25  out: {
26  module_type: RootOutput
27  fileName: "output.root"
28  // DataType_ModuleLabel_InstanceName_ProcessName
29  outputCommands : [
30  "keep *_*_*_*",
31  "drop *_nfsp_raw_*",
32  "drop *_nfsp_wiener_*",
33  "drop *_nfsp_gauss_*",
34  "drop *_wcNoiseFilter_*_*",
35  "drop *_daq_*_*"
36  ]
37  }
38 }