14import modularAnalysis
as ma
19 """The unit test case for TreeFitter"""
22 """Run the test fit"""
24 testFile = tempfile.NamedTemporaryFile()
26 main = basf2.create_path()
29 ma.inputMdst(inputfile, path=main)
31 ma.fillParticleList(
'pi+:a',
'pionID > 0.5', path=main)
33 ma.fillParticleList(
'gamma:a',
'', path=main)
34 ma.reconstructDecay(
'pi0:a -> gamma:a gamma:a',
'0.125 < InvM < 0.145', 0, path=main)
36 ma.reconstructDecay(
'B0:rec -> pi-:a pi+:a pi0:a',
'', 0, path=main)
37 ma.matchMCTruth(
'B0:rec', path=main)
40 main.add_module(
'TreeFitter',
41 particleList=
'B0:rec',
43 massConstraintList=[],
44 massConstraintListParticlename=[],
45 expertUseReferencing=
True,
47 updateAllDaughters=
True)
49 ntupler = basf2.register_module(
'VariablesToNtuple')
50 ntupler.param(
'fileName', testFile.name)
51 ntupler.param(
'variables', [
'chiProb',
'M',
'isSignal'])
52 ntupler.param(
'particleList',
'B0:rec')
53 main.add_module(ntupler)
57 ntuplefile = TFile(testFile.name)
58 ntuple = ntuplefile.Get(
'ntuple')
60 self.assertFalse(ntuple.GetEntries() == 0,
"Ntuple is empty.")
62 allBkg = ntuple.GetEntries(
"isSignal == 0")
63 allSig = ntuple.GetEntries(
"isSignal > 0")
65 truePositives = ntuple.GetEntries(
"(chiProb > 0) && (isSignal > 0)")
66 falsePositives = ntuple.GetEntries(
"(chiProb > 0) && (isSignal == 0)")
68 mustBeZero = ntuple.GetEntries(f
"(chiProb < {conf})")
70 print(f
"True fit survivors: {truePositives} out of {allSig} true candidates")
71 print(f
"False fit survivors: {falsePositives} out of {allBkg} false candidates")
73 self.assertFalse(truePositives == 0,
"No signal survived the fit.")
75 self.assertTrue(falsePositives < 8299,
"Background rejection too small.")
77 self.assertTrue(truePositives > 212,
"Signal rejection too high")
78 self.assertFalse(mustBeZero, f
"We should have dropped all candidates with confidence level less than {conf}.")
80 print(
"Test passed, cleaning up.")
83if __name__ ==
'__main__':
def require_file(filename, data_type="", py_case=None)
def clean_working_directory()