diff --git a/DaVinciTests/tests/qmtest/io.qms/test_read_moore_dst.qmt b/DaVinciTests/tests/qmtest/io.qms/test_read_moore_dst.qmt index 3a424d383fb43631647821c53f6c6ae377d01301..0fa4c1ba0b2375425f86cafc43b45831c972555f 100755 --- a/DaVinciTests/tests/qmtest/io.qms/test_read_moore_dst.qmt +++ b/DaVinciTests/tests/qmtest/io.qms/test_read_moore_dst.qmt @@ -21,15 +21,15 @@ <argument name="validator"><text> findReferenceBlock("""StdLooseD02KK INFO Number of counters : 9 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "# D0 -> K+ K- " | 21 | 8 | 0.38095 | 0.48562 | 0.0000 | 1.0000 | - | "# K+" | 21 | 54 | 2.5714 | 2.2376 | 0.0000 | 8.0000 | - | "# K-" | 21 | 55 | 2.6190 | 1.8892 | 0.0000 | 7.0000 | - | "# StdLooseKaons/Particles" | 21 | 109 | 5.1905 | 3.0334 | 1.0000 | 12.000 | - | "# input particles" | 21 | 109 | 5.1905 | 3.0334 | 1.0000 | 12.000 | - | "# selected" | 21 | 8 | 0.38095 | - |*"#accept" | 21 | 8 |( 38.09524 +- 10.59712)% | - | "#pass combcut" | 148 | 8 | 0.054054 | - | "#pass mother cut" | 8 | 8 | 1.0000 | + | "# D0 -> K+ K- " | 21 | 87 | 4.1429 | 2.6777 | 1.0000 | 11.000 | + | "# K+" | 21 | 219 | 10.429 | 5.6279 | 3.0000 | 20.000 | + | "# K-" | 21 | 203 | 9.6667 | 4.7140 | 2.0000 | 22.000 | + | "# StdLooseKaons/Particles" | 21 | 422 | 20.095 | 9.3549 | 7.0000 | 42.000 | + | "# input particles" | 21 | 422 | 20.095 | 9.3549 | 7.0000 | 42.000 | + | "# selected" | 21 | 87 | 4.1429 | + |*"#accept" | 21 | 21 |( 100.0000 +- 0.000000)% | + | "#pass combcut" | 2470 | 90 | 0.036437 | + | "#pass mother cut" | 90 | 87 | 0.96667 | """, stdout, result, causes, signature_offset = 0, id = "Stream3") </text></argument> </extension> diff --git a/Phys/DaVinci/python/DaVinci/filters_selectors.py b/Phys/DaVinci/python/DaVinci/filters_selectors.py index 45504025ffdee0e2a2f25847546e0be83b24642e..f40c352321ba043e1ecf7ca00e940c4bf6b1370a 100644 --- a/Phys/DaVinci/python/DaVinci/filters_selectors.py +++ b/Phys/DaVinci/python/DaVinci/filters_selectors.py @@ -156,8 +156,9 @@ def get_upstream_track_selector(Code='TrALL', **kwargs): def default_track_cuts(): """ Return a string with the default track cuts. + These are set as a take-all since in principle the track cuts are applied in HLT. """ - return require_all("TrCHI2<25", "~TrCLONE") + return require_all("TrALL") def default_particle_cuts():