FilterAnalyzer.fcl
Go to the documentation of this file.
1 #include "services_dune.fcl"
2 #include "singles_dune.fcl"
3 #include "largeantmodules_dune.fcl"
4 #include "detsimmodules_dune.fcl"
5 
6 process_name: FilterAnalyzer
7 
8 services: {
9  TFileService: { fileName: "AnalyzedFilter.root" }
10  @table::dune35t_simulation_services
11  TimeTracker: {}
12  RandomNumberGenerator: {}
13  message: @local::standard_info
14 }
15 
16 services.DetPedestalService.DetPedestalDUNE.UseDB: true
17 
18 physics:
19 {
20  analyzers:
21  {
22  noisecorrelation: {
23 
24  module_type: FilterAnalyzer #### For a single run use this one....
25 # module_type: FilterAnalyzerRunList ####### For a list of runs use this one.....
26 
27  DigitModuleLabel: "unstick"
28  DigitModuleInstance: "TPC"
29 
30  ColFilter: "(x>1)*[0]*(1-1/(1+exp(-(x-[1])/[2])))"
31  ColFilterParams: [ 1, 150., 25. ]
32 
33  IndUFilter: "(x>30)*[0]*(1-1/(1+exp(-(x-[1])/[2])))*(1/(1+exp(-(x-[3])/[4])))"
34  IndUFilterParams: [ 1.0, 105., 19., 18., 10. ]
35 
36  IndVFilter: "(x>30)*[0]*(1-1/(1+exp(-(x-[1])/[2])))*(1/(1+exp(-(x-[3])/[4])))"
37  IndVFilterParams: [ 0.95, 125., 19., 10., 109. ]
38  }
39  }
40 
41  analyze: [ noisecorrelation ]
42  end_paths: [ analyze ]
43 
44 }
45 
46 source:
47 {
48  module_type: RootInput
49  fileNames: [ "/pnfs/lbne/scratch/lbnepro/dropbox/data/lbne_r015900_sr01_20160312T021753_20160325T231841_split.root" ]
50  maxEvents: 1
51 }