runValidation.fcl
Go to the documentation of this file.
1 #include "services_dune.fcl"
2 #include "CRT.fcl"
3 
4 process_name: CRTSimValidation
5 
6 services:
7 {
8  # Load the service that manages root files for histograms.
9  #TFileService: { fileName: "HelloAuxDet_hist.root" }
10  TimeTracker: {}
11  MemoryTracker: {}
12  RandomNumberGenerator: {} #ART native random number generator
13  message: @local::dune_message_services_prod_debug
14  FileCatalogMetadata: @local::art_file_catalog_mc
15  @table::protodune_services
16  TFileService: { fileName: "CRTSimValidation.root" }
17  IFBeam: {}
18 }
19 
20 dune_message_services_prod_debug.destinations.LogWarningFile.categories:
21 {
22  timeToHits: { limit: 1000 }
23  CreateTrigger: { limit: 1000 }
24  moduleToChannels: { limit: 1000 }
25 }
26 
27 dune_message_services_interactive.destinations.LogStandardOut.categories.LargeDeltaT: { limit: 1000 }
28 
29 source:
30 {
31  module_type: RootInput
32  maxEvents: -1
33  fileNames: ["input_file.root"]
34 }
35 
36 physics:
37 {
38  analyzers:
39  {
40  validate: @local::CRTSimValidation_standard
41  }
42  producers:
43  {
44  }
45 
46  ana: [ validate ]
47 
48  end_paths: [ ana ]
49 }