readoutsimanajob.fcl
Go to the documentation of this file.
1 #NuTools Services
2 #include "seedservice.fcl"
3 
4 #GArSoft Services
5 #include "DetectorClocks.fcl"
6 #include "DetectorProperties.fcl"
7 #include "GArProperties.fcl"
8 #include "Geometry.fcl"
9 #include "RunHistory.fcl"
10 #include "BackTracker.fcl"
11 #include "ECALProperties.fcl"
12 
13 #Plugins
14 #include "RawDigitAna.fcl"
15 
16 process_name: TPCReadout
17 
18 services:
19 {
20  # Load the service that manages root files for histograms.
21  TFileService: { fileName: "readoutsim_hist.root" }
22  TimeTracker: {}
23  RandomNumberGenerator: {} #ART native random number generator
24  #See Geometry.fcl for the list of geometries available
25  GeometryGAr: @local::nd_hall_mpd_only_SPYv3_geo
26  GeometryGArConfigurationWriter: {}
27  ExptGeoHelperInterface: @local::standard_geometry_helper
28  DetectorClocks: @local::standard_clocks
29  DetectorProperties: @local::standard_detproperties
30  GArProperties: @local::standard_garproperties
31  NuRandomService: @local::standard_NuRandomService
32  MagneticField: @local::standard_mag_garsoft
33  BackTracker: @local::standard_backtracker
34  ECALProperties: @local::standard_ecalproperties
35  #RunHistory: @local::standard_runhistory
36 }
37 
38 
39 #Start each new event with an empty event.
40 source:
41 {
42  module_type: RootInput
43 }
44 
45 # Define and configure some modules to do work on each event.
46 # First modules are defined; they are scheduled later.
47 # Modules are grouped by type.
48 physics:
49 {
50 
51  analyzers:
52  {
53  daqana: @local::standard_rawdigitana
54  }
55 
56  #define the output stream, there could be more than one if using filters
57  stream1: [ daqana ]
58 
59 }