makefifohists.fcl
Go to the documentation of this file.
1 #include "services_microboone.fcl"
2 #include "opticaldetectormodules.fcl"
3 
4 process_name: Ana
5 
6 services:
7 {
8  # Load the service that manages root files for histograms.
9  TFileService: { fileName: "fifo_hist.root" }
10  TimeTracker: {}
11  MemoryTracker: { } # default is one
12  RandomNumberGenerator: {} #ART native random number generator
13  message: @local::standard_warning
14  FileCatalogMetadata: @local::art_file_catalog_mc
15 }
16 services.FileCatalogMetadata.applicationVersion: "S2013.06.25"
17 
18 services.FileCatalogMetadataExtras: @local::microboone_file_catalog
19 services.FileCatalogMetadataExtras.Metadata: [ "group", "uboone",
20  "fileFormat", "root",
21  "fclName", "standard_reco_uboone.fcl",
22  "fclVersion", "v1_5",
23  "ubProjectStage", "reco",
24  "ubProjectVersion", "v1_3" ]
25 services.FileCatalogMetadataExtras.RenameTemplate: "${base .root}_${CLUSTER 0}_${PROCESS 0}_reco.root"
26 
27 # stop the "ctor warning" madness, yet keep desired verbosity in Tracking.
28 services.message.destinations.warningmsg.categories.default.limit:1
29 services.message.destinations.warningmsg.categories.RecoBaseDefaultCtor.limit:0
30 services.message.destinations.warningmsg.categories.Track3DKalmanSPS.limit: 1000000
31 services.message.destinations.warningmsg.categories.Track3DKalmanSPS.reportEvery: 1
32 services.message.destinations.warningmsg.categories.Track3DKalmanSPS.timeSpan: 0
33 
34 #source is now a root file
35 source:
36 {
37  module_type: RootInput
38  skipEvents: 1000 # Number of events to create
39 }
40 
41 # Define and configure some modules to do work on each event.
42 # First modules are defined; they are scheduled later.
43 # Modules are grouped by type.
44 physics:
45 {
46 
47  analyzers:
48  {
49  fifohistana: @local::standard_fifohistana
50 
51  }
52 
53  #define the producer and filter modules for this path, order matters,
54  #filters reject all following items. see lines starting physics.producers below
55  ana: [ fifohistana ]
56 
57  #define the output stream, there could be more than one if using filters
58  stream1: []
59 
60  #trigger_paths is a keyword and contains the paths that modify the art::event,
61  #ie filters and producers
62  trigger_paths: []
63 
64  #end_paths is a keyword and contains the paths that do not modify the art::Event,
65  #ie analyzers and output streams. these all run simultaneously
66  end_paths: [ana, stream1]
67 }
68 
69 #block to define where the output goes. if you defined a filter in the physics
70 #block and put it in the trigger_paths then you need to put a SelectEvents: {SelectEvents: [XXX]}
71 #entry in the output stream you want those to go to, where XXX is the label of the filter module(s)
72 outputs:
73 {
74  out1:
75  {
76  module_type: RootOutput
77  fileName: "standard_reco_uboone.root"
78  dataTier: "reconstructed"
79  }
80 }