Skip to content
Snippets Groups Projects
Commit 1cb33a5f authored by Stewart Martin-Haugh's avatar Stewart Martin-Haugh
Browse files

New bootstrap-generating test, to compare CA and athena

parent 405f1d65
No related merge requests found
#Generate CA pickle files from athena and CA
from AthenaCommon.Configurable import Configurable
Configurable.configurableRun3Behavior=1
from AthenaConfiguration.ComponentAccumulator import ComponentAccumulator
acc = ComponentAccumulator()
print "bootstrap_test.pkl"
with file("bootstrap_test.pkl", "w") as p:
acc.store( p, nEvents=10, useBootStrapFile=True, threaded=False )
p.close()
print "bootstrap_CA_test.pkl"
with file("bootstrap_CA_test.pkl", "w") as p:
acc.store( p, nEvents=10, useBootStrapFile=False, threaded=False )
p.close()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment