8def createDumpGeoConfigFlags(gcf):
9
10
11 gcf.addFlag("GeoModel.DumpGeo.ShowTreetopContent", False, help = "Show the content of the Treetops --- (by default, only the list of Treetops is shown)")
12
13
14 gcf.addFlag("GeoModel.DumpGeo.ForceOverwrite", False, help = "Force to overwrite an existing SQLite output file with the same name, if any")
15
16
17 gcf.addFlag("GeoModel.DumpGeo.FilterDetManagers", [], type = list, help = "Only output the GeoModel Detector Managers specified in the list")
18
19 gcf.addFlag('GeoModel.DumpGeo.OutputFileName','', help='Provide a user defined filename for the output .db file, and override the file name built automatically from the geometry tag and the filtered Detector Managers (if any filter is applied)')
20
21 return gcf
22