-
Notifications
You must be signed in to change notification settings - Fork 1
/
run_networktraining.fcl
76 lines (62 loc) · 1.83 KB
/
run_networktraining.fcl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
#include "selectionconfig.fcl"
process_name: ConvNetworkAnalysisProcess
services:
{
TFileService: { fileName: "convnetwork_output.root" }
TimeTracker: {}
MemoryTracker: {}
RandomNumberGenerator: {}
ExptGeoHelperInterface: @local::microboone_geometry_helper
Geometry: @local::microboone_geo
DetectorPropertiesService: @local::microboone_detproperties
LArProperties: @local::microboone_properties
DetectorClocksService: @local::microboone_detectorclocks
@table::microboone_services_reco
message: @local::standard_info
}
services.DetectorClocksService.InheritClockConfig: false
services.DetectorClocksService.TriggerOffsetTPC: -0.400e3
services.SpaceCharge.EnableCorrSCE: true
services.SpaceCharge.EnableSimEFieldSCE: true
services.SpaceCharge.EnableSimSpatialSCE: true
source:
{
module_type: RootInput
maxEvents: -1
fileNames: [ "input_file.root" ]
}
physics:
{
analyzers:
{
convnetalgo:
{
module_type: ConvolutionNetworkAlgo
TrainingMode: true
TrainingOutputFile: "training_output"
ModelFileU: ""
ModelFileV: ""
ModelFileW: ""
ImageWidth: 256
ImageHeight: 256
DriftStep: 0.5
WirePitchU: 0.3
WirePitchV: 0.3
WirePitchW: 0.3
CaloAlg: @local::microboone_calo_mcc9_data
SignatureTools:
{
leptonic: @local::MuonSignature
hadronic: @local::KaonShortSignature
}
}
}
filters:
{
signaltruthfilter: @local::SignalTruthFilter
}
p1: [ signaltruthfilter ]
e1: [ convnetalgo ]
trigger_paths: [ p1 ]
end_paths: [ e1 ]
}