copy.fcl
Go to the documentation of this file.
1 process_name: READ
2 
3 source: {
4  module_type: RootInput
5  fileNames: [
6  "../test_tiered_input_04d1_t.d/f41.root",
7  "../test_tiered_input_04d2_t.d/f42.root",
8  "../test_tiered_input_04d3_t.d/f43.root"
9  ]
10  secondaryFileNames: [
11  {
12  a: "../test_tiered_input_04d1_t.d/f41.root"
13  b: ["../test_tiered_input_04c1_t.d/f31.root", "../test_tiered_input_04b1_t.d/f21.root", "../test_tiered_input_04a1_t.d/f11.root"]
14  },
15  {
16  a: "../test_tiered_input_04d2_t.d/f42.root"
17  b: ["../test_tiered_input_04c2_t.d/f32.root", "../test_tiered_input_04b2_t.d/f22.root", "../test_tiered_input_04a2_t.d/f12.root"]
18  },
19  {
20  a: "../test_tiered_input_04d3_t.d/f43.root"
21  b: ["../test_tiered_input_04c3_t.d/f33.root", "../test_tiered_input_04b3_t.d/f23.root", "../test_tiered_input_04a3_t.d/f13.root"]
22  }
23  ]
24 }
25 
26 outputs: {
27  out1: {
28  module_type: RootOutput
29  fileName: "out1.root"
30  fastCloning: true
31  }
32 }
33 
34 physics: {
35  analyzers: {
36  a1: {
37  module_type: IntTestAnalyzer
38  input_label: m1a
39  expected_value: 1
40  }
41  a2: {
42  module_type: IntTestAnalyzer
43  input_label: m2a
44  expected_value: 2
45  }
46  a3: {
47  module_type: IntTestAnalyzer
48  input_label: m3a
49  expected_value: 3
50  }
51  }
52  e1: [ a3, a2, a1, out1 ]
53  end_paths: [ e1 ]
54 }