runCRTTrackCaloAna.fcl
Go to the documentation of this file.
1 #include "services_dune.fcl"
2 #include "ProtoDUNEDataUtils.fcl"
3 #include "ProtoDUNEBeamlineUtils.fcl"
4 
5 #include "ProtoDUNECalibration.fcl"
6 
7 process_name: CRTMatchTrackCaloAna
8 
9 services:
10 {
11  #Load the service that manages root files for histograms.
12  TFileService: { fileName: "crtCalo.root" }
13  RandomNumberGenerator: {} #ART native random number generator
14  @table::protodune_services
15 
16  message: @local::dune_message_services_prod_debug
17  FileCatalogMetadata: @local::art_file_catalog_mc
18  @table::protodune_services
19 }
20 
21 
22 #source is now a root file
23 source:
24 {
25  module_type: RootInput
26  maxEvents: -1 # Number of events to create
27 }
28 
29 outputs:
30 {
31 }
32 
33 physics:
34 {
35 
36  analyzers:{
37  crtCalo:
38  {
39  module_type: "CRTMatchTrackCaloAna"
40  }
41  }
42 
43  ana: [ crtCalo ]
44 
45 
46 
47  #end_paths is a keyword and contains the paths that do not modify the art::Event,
48  #ie analyzers and output streams. these all run simultaneously
49  #end_paths: [ stream1, crtCalo ]
50  end_paths: [ ana ]
51 }
52 
53 # define the list of LArSoft modules to run through the simulate path
54 
55 
56 physics.analyzers.crtCalo.CalorimetryParameters: {
57  PlaneID: 2
58  betap: 0.212
59  Rho: 1.383
60  Wion: 23.6e-6
61  alpha: 0.93
62 
63  PlaneParameters: [
64  {
65  PlaneID: 2
66  norm_factor: 0.9947
67  calib_factor: 4.86e-3
68  },
69  {
70  PlaneID: 1
71  norm_factor: 1.0082
72  calib_factor: 4.81e-3
73  },
74  {
75  PlaneID: 0
76  norm_factor: 1.0078
77  calib_factor: 4.81e-3
78  }
79  ]
80  X_correction: "./Xcalo_r5770.root"
81  YZ_correction: "./YZcalo_r5770.root"
82  E_field_correction: "./SCE_DataDriven_180kV_v3.root"
83 }
84 physics.analyzers.crtCalo.TrackModuleLabel: "pandoraTrack"
85 physics.analyzers.crtCalo.CalorimetryModuleLabel: "pandoracaloSCE"
86 physics.analyzers.crtCalo.DataUtils: @local::standard_protodunedatautils
87 physics.analyzers.crtCalo.BeamlineUtils: @local::standard_protodunebeamlineutils
88 
89