diff --git a/SimCore/python/sim_example.py b/SimCore/python/sim_example.py deleted file mode 100644 index 67b11296b..000000000 --- a/SimCore/python/sim_example.py +++ /dev/null @@ -1,41 +0,0 @@ -"""A short run-ready example for a basic, unbiased simulation""" - -def process() : - """Get the process to run - - This constructs a process for a short simulation to run. - - Returns - ------- - Process - A process with a simple inclusive, unbiased electron - simulation in the v12 geometry. - - Examples - -------- - Put the following in an empy python script named 'config.py': - from LDMX.SimCore import sim_example - myProc = sim_example.process() - - Then you can run it using - fire config.py - - Or if you are in the docker container environment: - ldmx fire config.py - """ - - from LDMX.Framework import ldmxcfg - from LDMX.SimCore import examples - - p=ldmxcfg.Process("egsim") - - single_e = examples.inclusive_single_e() - - p.sequence=[single_e] - - p.outputFiles=['single_test.root'] - - p.maxEvents = 10 - p.logFrequency = 1 - - return p