hitana.fcl
Go to the documentation of this file.
1 #include "services_microboone.fcl"
2 #include "caldata_microboone.fcl"
3 #include "hitfindermodules_microboone.fcl"
4 #include "cluster_microboone.fcl"
5 #include "mchitmodules.fcl"
6 
7 process_name: HitAna
8 
9 services:
10 {
11  # Load the service that manages root files for histograms.
12  TFileService: { fileName: "HitAnaOutput3_hist.root" }
13  TimeTracker {}
14  RandomNumberGenerator: {} #ART native random number generator
15  @table::microboone_services
16 }
17 
18 
19 #Start each new event with an empty event.
20 source:
21 {
22  module_type: RootInput
23  fileNames: ["myInputFile.root"]
24  maxEvents: 10 # Number of events to create
25  firstRun: 1 # Run number to use for this file
26  firstEvent: 1 # number of first event in the file
27 
28 }
29 
30 # Define and configure some modules to do work on each event.
31 # First modules are defined; they are scheduled later.
32 # Modules are grouped by type.
33 physics:
34 {
35 
36  producers:
37  {
38  caldata: @local::microboone_calroi
39  gaushit: @local::microboone_gaushitfinder
40  rffhit: @local::microboone_rffhitfinder
41  ccluster: @local::microboone_clustercrawler
42  mchit: @local::standard_mchitfinder
43 
44  }
45 
46  analyzers:
47  {
48  hitana: { module_type: HitAnaModule
49  HitModuleLabels: [ "rffhit", "gaushit", "ccluster" ] # cccluster
50  WireModuleLabel: "caldata"
51  MCHitModuleLabel: "mchit" }
52  }
53 
54  reco: [caldata, gaushit, rffhit, ccluster, mchit]
55  stream1: [ out1 ]
56  analyze: [ hitana ]
57 
58  trigger_paths: [ reco ]
59  end_paths: [ analyze, stream1 ]
60 }
61 
62 outputs:
63 {
64  out1:
65  {
66  module_type: RootOutput
67  fileName: "HitAnaOutput3.root"
68  compressionLevel: 1
69  }
70 }
71 
72 #physics.producers.caldata.uPlaneROIPad: [10,10]
73 #physics.producers.caldata.uPlaneRamp: false