Skip to content
Snippets Groups Projects
Commit 2a6acdf3 authored by Tadej Novak's avatar Tadej Novak Committed by Melissa Yexley
Browse files

Update ASG test files for DAOD_PHYS

parent c14d3a1b
2 merge requests!707402024-04-19: merge of 24.0 into main,!67647Online Event Displays to CA
Showing with 27 additions and 16 deletions
/cvmfs/atlas-nightlies.cern.ch/repo/data/data-art/ASG/DAOD_PHYS/p5169/data18_13TeV.00348885.physics_Main.deriv.DAOD_PHYS.r13286_p4910_p5169/DAOD_PHYS.29445515._000301.pool.root.1
/cvmfs/atlas-nightlies.cern.ch/repo/data/data-art/ASG/DAOD_PHYS/p5855/data18_13TeV.00348885.physics_Main.deriv.DAOD_PHYS.r13286_p4910_p5855/DAOD_PHYS.34857549._000345.pool.root.1
/cvmfs/atlas-nightlies.cern.ch/repo/data/data-art/ASG/DAOD_PHYS/p5169/mc20_13TeV.410470.PhPy8EG_A14_ttbar_hdamp258p75_nonallhad.deriv.DAOD_PHYS.e6337_s3681_r13167_p5169/DAOD_PHYS.29445530._000001.pool.root.1
/cvmfs/atlas-nightlies.cern.ch/repo/data/data-art/ASG/DAOD_PHYS/p5855/mc20_13TeV.410470.PhPy8EG_A14_ttbar_hdamp258p75_nonallhad.deriv.DAOD_PHYS.e6337_s3681_r13167_p5855/DAOD_PHYS.34865530._000740.pool.root.1
/cvmfs/atlas-nightlies.cern.ch/repo/data/data-art/ASG/DAOD_PHYS/p5169/mc20_13TeV.410470.PhPy8EG_A14_ttbar_hdamp258p75_nonallhad.deriv.DAOD_PHYS.e6337_a899_r13167_p5169/DAOD_PHYS.29445540._000002.pool.root.1
/cvmfs/atlas-nightlies.cern.ch/repo/data/data-art/ASG/DAOD_PHYS/p5855/mc20_13TeV.410470.PhPy8EG_A14_ttbar_hdamp258p75_nonallhad.deriv.DAOD_PHYS.e6337_a907_r14861_p5855/DAOD_PHYS.35068879._000214.pool.root.1
/cvmfs/atlas-nightlies.cern.ch/repo/data/data-art/ASG/DAOD_PHYS/p5169/mc21_13p6TeV.601237.PhPy8EG_A14_ttbar_hdamp258p75_allhad.deriv.DAOD_PHYS.e8357_s3775_r13504_p5169/DAOD_PHYS.29453689._001003.pool.root.1
/cvmfs/atlas-nightlies.cern.ch/repo/data/data-art/ASG/DAOD_PHYS/p5855/mc23_13p6TeV.601229.PhPy8EG_A14_ttbar_hdamp258p75_SingleLep.deriv.DAOD_PHYS.e8514_s4162_r14622_p5855/DAOD_PHYS.35010062._000387.pool.root.1
......@@ -56,7 +56,7 @@ namespace asg
event = std::make_unique<POOL::TEvent>();
#endif
ASSERT_SUCCESS (event->readFrom (file.get()));
ASSERT_TRUE (event->getEntry (0) >= 0);
ASSERT_TRUE (event->getEntry (1) >= 0);
}
static void TearDownTestCase ()
......
xAOD::Init INFO Environment initialised for data access
el_pt_from_iparticle.Mean() = 7482.14
el_pt_from_electron.Mean() = 7482.14
el_pt_from_iparticle.Mean() = 8734.72
el_pt_from_electron.Mean() = 8734.72
xAOD::Init INFO Environment initialised for data access
ElectronsPt entries = 789001
ElectronsPt entries = 276279
xAOD::Init INFO Environment initialised for data access
ElectronsPt entries = 789001
ElectronsPt entries = 276279
This diff is collapsed.
This diff is collapsed.
......@@ -237,19 +237,30 @@ def makeGeneratorAlgorithmsSequence (dataType) :
def pileupConfigFiles(dataType):
"""Return the PRW config files and lumicalc files for tests"""
if isinstance(dataType, str):
if dataType == "mc":
dataType = DataType.FullSim
elif dataType == "afii":
dataType = DataType.FastSim
else:
dataType = DataType(dataType)
if dataType is DataType.Data:
prwfiles = []
lumicalcfiles = []
else:
lumicalcfiles = [
"GoodRunsLists/data15_13TeV/20170619/PHYS_StandardGRL_All_Good_25ns_276262-284484_OflLumi-13TeV-008.root",
"GoodRunsLists/data16_13TeV/20180129/PHYS_StandardGRL_All_Good_25ns_297730-311481_OflLumi-13TeV-009.root",
]
if dataType is DataType.FullSim:
lumicalcfiles = [
"GoodRunsLists/data15_13TeV/20170619/PHYS_StandardGRL_All_Good_25ns_276262-284484_OflLumi-13TeV-008.root",
"GoodRunsLists/data16_13TeV/20180129/PHYS_StandardGRL_All_Good_25ns_297730-311481_OflLumi-13TeV-009.root",
]
prwfiles = [
"PileupReweighting/mc20_common/mc20a.284500.physlite.prw.v1.root"
]
else:
lumicalcfiles = [
"GoodRunsLists/data18_13TeV/20190318/ilumicalc_histograms_None_348885-364292_OflLumi-13TeV-010.root",
]
# use fast sim case to test running without PRW
prwfiles = []
return prwfiles, lumicalcfiles
......
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