evd3D.fcl
Go to the documentation of this file.
1 #include "Geometry.fcl"
2 #include "evdservices_base.fcl"
3 #include "DetectorProperties.fcl"
4 #include "GArProperties.fcl"
5 #include "ECALProperties.fcl"
6 #include "DetectorClocks.fcl"
7 
8 process_name: EVD3D
9 
10 services:
11 {
12  # Load the service that manages root files for histograms.
13  message: @local::evd_message
14  #See Geometry.fcl for the list of geometries available
15  GeometryGAr: @local::nd_hall_mpd_only_SPYv3_geo
16  ExptGeoHelperInterface: @local::standard_geometry_helper # from Geometry.fcl
17  DetectorProperties: @local::standard_detproperties # from DetectorProperties.fcl
18  GArProperties: @local::standard_garproperties # from GArProperties.fcl
19  ECALProperties: @local::standard_ecalproperties # from ECALProperties.fcl
20  DetectorClocks: @local::standard_clocks # from DetectorClocks.fcl
21  RootGraphicsEnablingService: {}
22  EventDisplay3DService: {}
23 }
24 
25 # Define the services
26 
27 #Look at the input files
28 source:
29 {
30  module_type: RootInput
31  fileNames: [ "data.root" ]
32  maxEvents: -1 # Number of events to create
33 }
34 
35 outputs:{}
36 
37 # Define and configure some modules to do work on each event.
38 # First modules are defined; they are scheduled later.
39 # Modules are grouped by type.
40 physics:
41 {
42 
43  producers: {}
44 
45  filters:{}
46 
47  analyzers:
48  {
49  evdisp: @local::standard_evd3D
50  }
51 
52  #list the modules for this path, order matters, filters reject all following items
53  evd: [ evdisp ]
54 
55  #end_path are things that do not modify art::Event, includes analyzers
56  #and output modules. all items here can be run simultaneously
57  end_paths: [evd]
58 }