Created
November 29, 2014 11:02
-
-
Save betatim/79d2e4a8e62d5d99d08f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# SetupProject DaVinci v36r2 | |
import sys | |
import GaudiPython as GP | |
from GaudiConf import IOHelper | |
from Configurables import LHCbApp, ApplicationMgr, DataOnDemandSvc | |
from Configurables import SimConf, DigiConf, DecodeRawEvent | |
from Configurables import CondDB, DstConf, PhysConf | |
from Configurables import LoKiSvc | |
# Some name shortcuts | |
MCParticle = GP.gbl.LHCb.MCParticle | |
Particle = GP.gbl.LHCb.Particle | |
Track = GP.gbl.LHCb.Track | |
MCHit = GP.gbl.LHCb.MCHit | |
def nodes(evt, node=None): | |
nodenames = [] | |
if node is None: | |
root = evt.retrieveObject('') | |
node = root.registry() | |
if node.object(): | |
nodenames.append(node.identifier()) | |
for l in evt.leaves(node): | |
# skip a location that takes forever to load | |
# XXX How to detect these automatically?? | |
if "Swum" in l.identifier(): | |
continue | |
temp = evt[l.identifier()] | |
nodenames += nodes(evt, l) | |
else: | |
nodenames.append(node.identifier()) | |
return nodenames | |
def advance(decision='B02DKWSD2HHHBeauty2CharmLine'): | |
"""Advance until stripping decision is true, returns | |
number of events by which we advanced""" | |
n = 0 | |
while True: | |
appMgr.run(1) | |
n += 1 | |
dec=evt['/Event/Strip/Phys/DecReports'] | |
if dec.hasDecisionName("Stripping%sDecision"%decision): | |
break | |
return n | |
# Configure all the unpacking, algorithms, tags and input files | |
appConf = ApplicationMgr() | |
appConf.ExtSvc+= ['ToolSvc', 'DataOnDemandSvc', LoKiSvc()] | |
from Configurables import ConfigTarFileAccessSvc | |
# XXX change me | |
ConfigTarFileAccessSvc().File = '/afs/cern.ch/user/t/thead/w/private/early2015/MCProduction/config.tar' | |
# Seems like you can either use {Sim,Digi,DST}Conf | |
# together or use DaVinci to get them all in one go | |
#s = SimConf() | |
#SimConf().EnableUnpack = True | |
#SimConf().EnablePack = False | |
#d = DigiConf() | |
#DigiConf().EnableUnpack = True | |
#DigiConf().EnablePack = False | |
#dst = DstConf() | |
#dst.EnableUnpack = ["Reconstruction", "Stripping"] | |
#dst.DataType = "2012" | |
from Configurables import DaVinci | |
dv = DaVinci() | |
dv.DataType = "2012" | |
# Not sure what PhysConf does, doesn't seem needed | |
#phys = PhysConf() | |
#phys.EnableUnpack = ["Reconstruction", "Stripping"] | |
#phys.DataType = "2012" | |
# disable for older versions of DV | |
# generally it seems in older versions of DV | |
# this whole script 'breaks' at places | |
# raising exceptions and yet works ... | |
dre = DecodeRawEvent() | |
dre.DataOnDemand = True | |
lhcbApp = LHCbApp() | |
lhcbApp.Simulation = False | |
CondDB().Upgrade = False | |
# don't really need tags for looking around | |
#LHCbApp().DDDBtag = t['DDDB'] | |
#LHCbApp().CondDBtag = t['CondDB'] | |
inputFiles = [sys.argv[-1]] | |
IOHelper('ROOT').inputFiles(inputFiles) | |
# Configuration done, run time! | |
appMgr = GP.AppMgr() | |
evt = appMgr.evtsvc() | |
# process first event | |
appMgr.run(1) | |
# Get a small print out of what is there in the event | |
evt.dump() | |
# print out "all" TES locations | |
# prints out packed locations, so you need to know | |
# what the unpacked location is called to actually access it | |
print "-"*80 | |
for node in nodes(evt): | |
print node | |
candidate = evt['Hlt2/SelReports'].selReport("Hlt2DiMuonJPsiDecision") | |
jpsi = candidate.substructure()[0].data() | |
child1 = jpsi.substructure()[0] | |
# a long (as in many lhcbIDs) track belonging to the child of the JPsi | |
print child1.substructure()[0].data() | |
# another track, but with less LHCbIDs | |
print child1.substructure()[3].data() | |
# think this is the particle made from child1 | |
# at least it has the right PID and same number of LHCbIDs | |
# but if I print them, they have different values?? | |
part_child1 = evt['Tesla/Particles'][1] | |
print part_child1.proto().track() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/bin/sh: line 3: warning: here-document at line 3 delimited by end-of-file (wanted `EOF') | |
================================================== | |
Log file from execution of: python gaudi-script.py | |
================================================== | |
LD_LIBRARY_PATH is: | |
/home/lhpilot010/home_cream_741178634/CREAM741178634/DIRAC_wylo3ipilot/92322788/lib | |
/cvmfs/lhcb.cern.ch/lib/lhcb/DAVINCI/DAVINCI_v36r2/InstallArea/x86_64-slc6-gcc48-opt/lib | |
/cvmfs/lhcb.cern.ch/lib/lhcb/ANALYSIS/ANALYSIS_v13r1p1/InstallArea/x86_64-slc6-gcc48-opt/lib | |
/cvmfs/lhcb.cern.ch/lib/lhcb/STRIPPING/STRIPPING_v9r1p1/InstallArea/x86_64-slc6-gcc48-opt/lib | |
/cvmfs/lhcb.cern.ch/lib/lhcb/PHYS/PHYS_v19r2p1/InstallArea/x86_64-slc6-gcc48-opt/lib | |
/cvmfs/lhcb.cern.ch/lib/lhcb/REC/REC_v17r2p1/InstallArea/x86_64-slc6-gcc48-opt/lib | |
/cvmfs/lhcb.cern.ch/lib/lhcb/LBCOM/LBCOM_v16r1p1/InstallArea/x86_64-slc6-gcc48-opt/lib | |
/cvmfs/lhcb.cern.ch/lib/lhcb/LHCB/LHCB_v38r2p1/InstallArea/x86_64-slc6-gcc48-opt/lib | |
/cvmfs/lhcb.cern.ch/lib/lhcb/GAUDI/GAUDI_v25r5/InstallArea/x86_64-slc6-gcc48-opt/lib | |
/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_70root6/pyanalysis/1.4_python2.7/x86_64-slc6-gcc48-opt/lib | |
/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_70root6/lapack/3.5.0/x86_64-slc6-gcc48-opt/lib | |
/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_70root6/blas/20110419/x86_64-slc6-gcc48-opt/lib | |
/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_70root6/fastjet/3.0.6/x86_64-slc6-gcc48-opt/lib | |
/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_70root6/neurobayes_expert/3.7.0/x86_64-slc6-gcc48-opt/lib | |
/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_70root6/RELAX/RELAX_1_4_1/x86_64-slc6-gcc48-opt/lib | |
/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_70root6/vdt/0.3.6/x86_64-slc6-gcc48-opt/lib | |
/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_70root6/oracle/11.2.0.3.0/x86_64-slc6-gcc48-opt/lib | |
/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_70root6/sqlite/3070900/x86_64-slc6-gcc48-opt/lib | |
/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_70root6/COOL/COOL_3_0_0a/x86_64-slc6-gcc48-opt/lib | |
/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_70root6/CORAL/CORAL_3_0_0a/x86_64-slc6-gcc48-opt/lib | |
/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_70root6/HepMC/2.06.09/x86_64-slc6-gcc48-opt/lib | |
/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_70root6/pytools/1.8_python2.7/x86_64-slc6-gcc48-opt/lib | |
/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_70root6/mysql/5.5.27/x86_64-slc6-gcc48-opt/lib | |
/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_70root6/clhep/1.9.4.7/x86_64-slc6-gcc48-opt/lib | |
/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_70root6/XercesC/3.1.1p1/x86_64-slc6-gcc48-opt/lib | |
/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_70root6/GSL/1.10/x86_64-slc6-gcc48-opt/lib | |
/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_70root6/Boost/1.55.0_python2.7/x86_64-slc6-gcc48-opt/lib | |
/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_70root6/ROOT/6.02.01/x86_64-slc6-gcc48-opt/lib | |
/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_70root6/xrootd/3.3.6/x86_64-slc6-gcc48-opt/lib64 | |
/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_70root6/tcmalloc/1.7p3/x86_64-slc6-gcc48-opt/lib | |
/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_70root6/libunwind/5c2cade/x86_64-slc6-gcc48-opt/lib | |
/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_70root6/expat/2.0.1/x86_64-slc6-gcc48-opt/lib | |
/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_70root6/qt/4.8.4/x86_64-slc6-gcc48-opt/lib | |
/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_70root6/pygraphics/1.4_python2.7/x86_64-slc6-gcc48-opt/lib | |
/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_70root6/gcc/4.8.1/x86_64-slc6/lib64 | |
/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_70root6/fftw3/3.1.2/x86_64-slc6-gcc48-opt/lib | |
/usr/lib | |
/lib64 | |
/lib | |
/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_69/gcc/4.8.1/x86_64-slc6/lib64 | |
/home/lhpilot010/home_cream_741178634/CREAM741178634/DIRAC_wylo3ipilot/92322788/lib | |
/home/lhpilot010/home_cream_741178634/CREAM741178634/DIRAC_wylo3ipilot/Linux_x86_64_glibc-2.12/lib | |
/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_70root6/Python/2.7.6/x86_64-slc6-gcc48-opt/lib | |
================================================== | |
PYTHONPATH is: | |
/cvmfs/lhcb.cern.ch/lib/lhcb/LHCB/LHCB_v38r2p1/InstallArea/x86_64-slc6-gcc48-opt/python/lib-dynload | |
/cvmfs/lhcb.cern.ch/lib/lhcb/GAUDI/GAUDI_v25r5/InstallArea/x86_64-slc6-gcc48-opt/python/lib-dynload | |
/cvmfs/lhcb.cern.ch/lib/lhcb/DAVINCI/DAVINCI_v36r2/InstallArea/x86_64-slc6-gcc48-opt/python.zip | |
/cvmfs/lhcb.cern.ch/lib/lhcb/ANALYSIS/ANALYSIS_v13r1p1/InstallArea/x86_64-slc6-gcc48-opt/python.zip | |
/cvmfs/lhcb.cern.ch/lib/lhcb/STRIPPING/STRIPPING_v9r1p1/InstallArea/x86_64-slc6-gcc48-opt/python.zip | |
/cvmfs/lhcb.cern.ch/lib/lhcb/PHYS/PHYS_v19r2p1/InstallArea/x86_64-slc6-gcc48-opt/python.zip | |
/cvmfs/lhcb.cern.ch/lib/lhcb/REC/REC_v17r2p1/InstallArea/x86_64-slc6-gcc48-opt/python.zip | |
/cvmfs/lhcb.cern.ch/lib/lhcb/LBCOM/LBCOM_v16r1p1/InstallArea/x86_64-slc6-gcc48-opt/python.zip | |
/cvmfs/lhcb.cern.ch/lib/lhcb/LHCB/LHCB_v38r2p1/InstallArea/x86_64-slc6-gcc48-opt/python.zip | |
/cvmfs/lhcb.cern.ch/lib/lhcb/GAUDI/GAUDI_v25r5/InstallArea/x86_64-slc6-gcc48-opt/python.zip | |
/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_70root6/pyanalysis/1.4_python2.7/x86_64-slc6-gcc48-opt/lib/python2.7/site-packages | |
/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_70root6/CORAL/CORAL_3_0_0a/x86_64-slc6-gcc48-opt/python | |
/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_70root6/CORAL/CORAL_3_0_0a/x86_64-slc6-gcc48-opt/lib | |
/cvmfs/lhcb.cern.ch/lib/lhcb/DBASE/RawEventFormat/v1r1/python | |
/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_70root6/pytools/1.8_python2.7/x86_64-slc6-gcc48-opt/lib/python2.7/site-packages | |
/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_70root6/pygraphics/1.4_python2.7/x86_64-slc6-gcc48-opt/lib/python2.7/site-packages | |
/cvmfs/lhcb.cern.ch/lib/lhcb/DBASE/PRConfig/v1r12/python | |
/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_70root6/ROOT/6.02.01/x86_64-slc6-gcc48-opt/lib | |
/cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v8r1p1/InstallArea/python | |
/home/lhpilot010/home_cream_741178634/CREAM741178634/DIRAC_wylo3ipilot | |
================================================== | |
PATH is: | |
/cvmfs/lhcb.cern.ch/lib/lhcb/ANALYSIS/ANALYSIS_v13r1p1/InstallArea/x86_64-slc6-gcc48-opt/scripts | |
/cvmfs/lhcb.cern.ch/lib/lhcb/STRIPPING/STRIPPING_v9r1p1/InstallArea/x86_64-slc6-gcc48-opt/scripts | |
/cvmfs/lhcb.cern.ch/lib/lhcb/LHCB/LHCB_v38r2p1/InstallArea/x86_64-slc6-gcc48-opt/scripts | |
/cvmfs/lhcb.cern.ch/lib/lhcb/GAUDI/GAUDI_v25r5/InstallArea/x86_64-slc6-gcc48-opt/scripts | |
/cvmfs/lhcb.cern.ch/lib/lhcb/PHYS/PHYS_v19r2p1/InstallArea/x86_64-slc6-gcc48-opt/bin | |
/cvmfs/lhcb.cern.ch/lib/lhcb/LHCB/LHCB_v38r2p1/InstallArea/x86_64-slc6-gcc48-opt/bin | |
/cvmfs/lhcb.cern.ch/lib/lhcb/GAUDI/GAUDI_v25r5/InstallArea/x86_64-slc6-gcc48-opt/bin | |
/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_70root6/pyanalysis/1.4_python2.7/x86_64-slc6-gcc48-opt/bin | |
/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_70root6/oracle/11.2.0.3.0/x86_64-slc6-gcc48-opt/bin | |
/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_70root6/sqlite/3070900/x86_64-slc6-gcc48-opt/bin | |
/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_70root6/COOL/COOL_3_0_0a/x86_64-slc6-gcc48-opt/bin | |
/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_70root6/CORAL/CORAL_3_0_0a/x86_64-slc6-gcc48-opt/bin | |
/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_70root6/pytools/1.8_python2.7/x86_64-slc6-gcc48-opt/bin | |
/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_70root6/mysql/5.5.27/x86_64-slc6-gcc48-opt/bin | |
/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_70root6/XercesC/3.1.1p1/x86_64-slc6-gcc48-opt/bin | |
/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_70root6/ROOT/6.02.01/x86_64-slc6-gcc48-opt/bin | |
/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_70root6/xrootd/3.3.6/x86_64-slc6-gcc48-opt/bin | |
/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_70root6/gccxml/0.9.0_20131026/x86_64-slc6-gcc48-opt/bin | |
/cvmfs/lhcb.cern.ch/lib/lhcb/LHCBGRID/LHCBGRID_v6r8/Linux_x86_64_glibc-2.12/bin | |
/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_70root6/tcmalloc/1.7p3/x86_64-slc6-gcc48-opt/bin | |
/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_70root6/qt/4.8.4/x86_64-slc6-gcc48-opt/bin | |
/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_70root6/pygraphics/1.4_python2.7/x86_64-slc6-gcc48-opt/bin | |
/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_70root6/Python/2.7.6/x86_64-slc6-gcc48-opt/bin | |
/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_70root6/gcc/4.8.1/x86_64-slc6/bin | |
/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc48-opt/bin | |
/cvmfs/lhcb.cern.ch/lib/contrib/CMT/v1r20p20090520/Linux-x86_64 | |
/cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v8r1p1/InstallArea/scripts | |
/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_69/gcc/4.8.1/x86_64-slc6/bin | |
/cvmfs/lhcb.cern.ch/lib/contrib/CMake/2.8.9/Linux-i386/bin | |
/home/lhpilot010/home_cream_741178634/CREAM741178634/DIRAC_wylo3ipilot/Linux_x86_64_glibc-2.12/bin | |
/home/lhpilot010/home_cream_741178634/CREAM741178634/DIRAC_wylo3ipilot/scripts | |
/bin | |
/usr/bin | |
/usr/local/sbin | |
/usr/sbin | |
/sbin | |
================================================== | |
# setting LC_ALL to "C" | |
# Restarting with LD_PRELOAD='libtcmalloc.so' | |
# --> Including file '/home/lhpilot010/home_cream_741178634/CREAM741178634/DIRAC_wylo3ipilot/92322788/options.pkl' | |
# Unpickled 84 configurables | |
# <-- End of file '/home/lhpilot010/home_cream_741178634/CREAM741178634/DIRAC_wylo3ipilot/92322788/options.pkl' | |
# --> Including file '/home/lhpilot010/home_cream_741178634/CREAM741178634/DIRAC_wylo3ipilot/92322788/data-wrapper.py' | |
# <-- End of file '/home/lhpilot010/home_cream_741178634/CREAM741178634/DIRAC_wylo3ipilot/92322788/data-wrapper.py' | |
Warning in <TInterpreter::ReadRootmapFile>: class pair<short,float> found in libEventPackerDict.so is already in libPhysEventDict.so | |
ApplicationMgr SUCCESS | |
==================================================================================================================================== | |
Welcome to *********Tesla*********, utilising DaVinci version v36r2 | |
running on td043.pic.es on Sat Nov 29 11:20:16 2014 | |
==================================================================================================================================== | |
ApplicationMgr INFO Application Manager Configured successfully | |
DetectorPersist... INFO Added successfully Conversion service:XmlCnvSvc | |
DetectorDataSvc SUCCESS Detector description database: conddb:/lhcb.xml | |
CounterSummarySvc INFO Wrote xml file summary.xml | |
TeslaReportAlgoSeq INFO Member list: TeslaReportAlgo | |
RndmGenSvc.Engine INFO Generator engine type:CLHEP::RanluxEngine | |
RndmGenSvc.Engine INFO Current Seed:1234567 Luxury:3 | |
RndmGenSvc INFO Using Random engine:HepRndm::Engine<CLHEP::RanluxEngine> | |
ToolSvc.Sequenc... INFO This machine has a speed about 2.62 times the speed of a 2.8 GHz Xeon. | |
TeslaReportAlgo DEBUG Property update for OutputLevel : new value = 1 | |
TeslaReportAlgo DEBUG Property update for OutputLevel : new value = 1 | |
TeslaReportAlgo VERBOSE ServiceLocatorHelper::service: found service AlgContextSvc | |
TeslaReportAlgo DEBUG Initialize base class GaudiCommon<Algorithm> | |
TeslaReportAlgo DEBUG found CounterSummarySvc OK | |
TeslaReportAlgo DEBUG List of ALL properties of TeslaReportAlgo/TeslaReportAlgo #properties = 37 | |
TeslaReportAlgo DEBUG Property ['Name': Value] = 'PV':Online | |
TeslaReportAlgo DEBUG Property ['Name': Value] = 'PreSplit':False | |
TeslaReportAlgo DEBUG Property ['Name': Value] = 'ReportVersion':2 | |
TeslaReportAlgo DEBUG Property ['Name': Value] = 'OutputPrefix':Tesla | |
TeslaReportAlgo DEBUG Property ['Name': Value] = 'TriggerLine':Hlt2DiMuonJPsi | |
TeslaReportAlgo DEBUG Property ['Name': Value] = 'RequireObjects':[ ] | |
TeslaReportAlgo DEBUG Property ['Name': Value] = 'VetoObjects':[ ] | |
TeslaReportAlgo DEBUG Property ['Name': Value] = 'StatEntityList':[ ] | |
TeslaReportAlgo DEBUG Property ['Name': Value] = 'CounterList':[ '.*' ] | |
TeslaReportAlgo DEBUG Property ['Name': Value] = 'UseEfficiencyRowFormat':True | |
TeslaReportAlgo DEBUG Property ['Name': Value] = 'EfficiencyRowFormat': |*%|-48.48s|%|50t||%|10d| |%|11.5g| |(%|#9.6g| +- %|-#9.6g|)%%| ------- | ------- | | |
TeslaReportAlgo DEBUG Property ['Name': Value] = 'RegularRowFormat': | %|-48.48s|%|50t||%|10d| |%|11.7g| |%|#11.5g| |%|#11.5g| |%|#12.5g| |%|#12.5g| | | |
TeslaReportAlgo DEBUG Property ['Name': Value] = 'StatTableHeader': | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | |
TeslaReportAlgo DEBUG Property ['Name': Value] = 'GlobalTimeOffset':0.0000000 | |
TeslaReportAlgo DEBUG Property ['Name': Value] = 'RootOnTES': | |
TeslaReportAlgo DEBUG Property ['Name': Value] = 'RootInTES': | |
TeslaReportAlgo DEBUG Property ['Name': Value] = 'Context': | |
TeslaReportAlgo DEBUG Property ['Name': Value] = 'TypePrint':True | |
TeslaReportAlgo DEBUG Property ['Name': Value] = 'StatPrint':True | |
TeslaReportAlgo DEBUG Property ['Name': Value] = 'PropertiesPrint':False | |
TeslaReportAlgo DEBUG Property ['Name': Value] = 'ErrorsPrint':True | |
TeslaReportAlgo DEBUG Property ['Name': Value] = 'RegisterForContextService':True | |
TeslaReportAlgo DEBUG Property ['Name': Value] = 'MonitorService':MonitorSvc | |
TeslaReportAlgo DEBUG Property ['Name': Value] = 'AuditStop':False | |
TeslaReportAlgo DEBUG Property ['Name': Value] = 'AuditStart':False | |
TeslaReportAlgo DEBUG Property ['Name': Value] = 'AuditEndRun':False | |
TeslaReportAlgo DEBUG Property ['Name': Value] = 'AuditBeginRun':False | |
TeslaReportAlgo DEBUG Property ['Name': Value] = 'AuditFinalize':False | |
TeslaReportAlgo DEBUG Property ['Name': Value] = 'AuditExecute':False | |
TeslaReportAlgo DEBUG Property ['Name': Value] = 'AuditRestart':False | |
TeslaReportAlgo DEBUG Property ['Name': Value] = 'AuditReinitialize':False | |
TeslaReportAlgo DEBUG Property ['Name': Value] = 'AuditInitialize':False | |
TeslaReportAlgo DEBUG Property ['Name': Value] = 'AuditAlgorithms':False | |
TeslaReportAlgo DEBUG Property ['Name': Value] = 'ErrorCount':0 | |
TeslaReportAlgo DEBUG Property ['Name': Value] = 'ErrorMax':1 | |
TeslaReportAlgo DEBUG Property ['Name': Value] = 'Enable':True | |
TeslaReportAlgo DEBUG Property ['Name': Value] = 'OutputLevel':1 | |
TeslaReportAlgo DEBUG ==> Initialize | |
TeslaReportAlgo DEBUG Requested processing of line: Hlt2DiMuonJPsi | |
TeslaReportAlgo VERBOSE ServiceLocatorHelper::service: found service ToolSvc | |
TeslaReportAlgo... DEBUG Property update for OutputLevel : new value = 1 | |
TeslaReportAlgo... DEBUG Initialize base class GaudiCommon<AlgTool> | |
TeslaReportAlgo... DEBUG found CounterSummarySvc OK | |
TeslaReportAlgo... DEBUG List of ALL properties of LoKi::DistanceCalculator/TeslaReportAlgo.LoKi::DistanceCalculator #properties = 33 | |
TeslaReportAlgo... DEBUG Property ['Name': Value] = 'DeltaPath':0.0020000000 | |
TeslaReportAlgo... DEBUG Property ['Name': Value] = 'DeltaChi2':0.050000000 | |
TeslaReportAlgo... DEBUG Property ['Name': Value] = 'ToleranceInZ':0.0020000000 | |
TeslaReportAlgo... DEBUG Property ['Name': Value] = 'MaxIterations':10 | |
TeslaReportAlgo... DEBUG Property ['Name': Value] = 'TrackExtrapolator':TrackMasterExtrapolator:PUBLIC | |
TeslaReportAlgo... DEBUG Property ['Name': Value] = 'StateProvider':TrackStateProvider:PUBLIC | |
TeslaReportAlgo... DEBUG Property ['Name': Value] = 'Transporter':ParticleTransporter:PUBLIC | |
TeslaReportAlgo... DEBUG Property ['Name': Value] = 'DiGammaDecays': [ ( pi0 -> <gamma> <gamma> ) , ( eta -> <gamma> <gamma> ) , <pi0> ] | |
TeslaReportAlgo... DEBUG Property ['Name': Value] = 'GammaCDecays': gamma -> e+ e- | |
TeslaReportAlgo... DEBUG Property ['Name': Value] = 'MaxPrints':2 | |
TeslaReportAlgo... DEBUG Property ['Name': Value] = 'PrintMyAlg':True | |
TeslaReportAlgo... DEBUG Property ['Name': Value] = 'ContextService':AlgContextSvc | |
TeslaReportAlgo... DEBUG Property ['Name': Value] = 'StatEntityList':[ ] | |
TeslaReportAlgo... DEBUG Property ['Name': Value] = 'CounterList':[ '.*' ] | |
TeslaReportAlgo... DEBUG Property ['Name': Value] = 'UseEfficiencyRowFormat':True | |
TeslaReportAlgo... DEBUG Property ['Name': Value] = 'EfficiencyRowFormat': |*%|-48.48s|%|50t||%|10d| |%|11.5g| |(%|#9.6g| +- %|-#9.6g|)%%| ------- | ------- | | |
TeslaReportAlgo... DEBUG Property ['Name': Value] = 'RegularRowFormat': | %|-48.48s|%|50t||%|10d| |%|11.7g| |%|#11.5g| |%|#11.5g| |%|#12.5g| |%|#12.5g| | | |
TeslaReportAlgo... DEBUG Property ['Name': Value] = 'StatTableHeader': | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | |
TeslaReportAlgo... DEBUG Property ['Name': Value] = 'GlobalTimeOffset':0.0000000 | |
TeslaReportAlgo... DEBUG Property ['Name': Value] = 'RootOnTES': | |
TeslaReportAlgo... DEBUG Property ['Name': Value] = 'RootInTES': | |
TeslaReportAlgo... DEBUG Property ['Name': Value] = 'Context': | |
TeslaReportAlgo... DEBUG Property ['Name': Value] = 'TypePrint':True | |
TeslaReportAlgo... DEBUG Property ['Name': Value] = 'StatPrint':True | |
TeslaReportAlgo... DEBUG Property ['Name': Value] = 'PropertiesPrint':False | |
TeslaReportAlgo... DEBUG Property ['Name': Value] = 'ErrorsPrint':True | |
TeslaReportAlgo... DEBUG Property ['Name': Value] = 'AuditFinalize':False | |
TeslaReportAlgo... DEBUG Property ['Name': Value] = 'AuditStop':False | |
TeslaReportAlgo... DEBUG Property ['Name': Value] = 'AuditStart':False | |
TeslaReportAlgo... DEBUG Property ['Name': Value] = 'AuditInitialize':False | |
TeslaReportAlgo... DEBUG Property ['Name': Value] = 'AuditTools':False | |
TeslaReportAlgo... DEBUG Property ['Name': Value] = 'OutputLevel':1 | |
TeslaReportAlgo... DEBUG Property ['Name': Value] = 'MonitorService':MonitorSvc | |
LoKiSvc SUCCESS | |
Welcome Welcome Welcome Welcome Welcome Welcome Welcome Welcome Welcome Welcome Welcome Welcome Welcome | |
LoKi LoKi | |
LoKi LoKi | |
LoKi Welcome to LoKi! LoKi | |
LoKi LoKi | |
LoKi (LOops & KInematics) LoKi | |
LoKi LoKi | |
LoKi Smart & Friendly C++ Physics Analysis Tool Kit LoKi | |
LoKi LoKi | |
LoKi LoKi | |
LoKi Author: Vanya BELYAEV [email protected] LoKi | |
LoKi With the kind help of Galina Pakhlova & Sergey Barsuk LoKi | |
LoKi LoKi | |
LoKi Have fun and enjoy! LoKi | |
LoKi LoKi | |
Welcome Welcome Welcome Welcome Welcome Welcome Welcome Welcome Welcome Welcome Welcome Welcome Welcome | |
Welcome Welcome Welcome Welcome Welcome Welcome Welcome Welcome Welcome Welcome Welcome Welcome Welcome | |
COOLConfSvc INFO CORAL Connection Retrial Period set to 60s | |
COOLConfSvc INFO CORAL Connection Retrial Time-Out set to 900s | |
DDDB INFO Connected to database "sqlite_file:/cvmfs/lhcb.cern.ch/lib/lhcb/SQLite/SQLDDDB/db/DDDB.db/DDDB" | |
DDDB INFO Using TAG "dddb-20130929-1" | |
TeslaReportAlgo...VERBOSE ServiceLocatorHelper::service: found service ToolSvc | |
TeslaReportAlgo... DEBUG The tool of type 'LoKi::Decay' has been added with the name 'ToolSvc.Decays' | |
TeslaReportAlgo... DEBUG Gamma_c descriptor : ( gamma -> e+ e- ) | |
TeslaReportAlgo... DEBUG Releasing tool 'ToolSvc.Decays' | |
TeslaReportAlgo... DEBUG The tool 'ToolSvc.Decays' of type 'LoKi::Decay' is released | |
TeslaReportAlgo... DEBUG The tool of type 'LoKi::Decay' has been added with the name 'ToolSvc.Decays' | |
TeslaReportAlgo... DEBUG Di-Gamma descriptor : ( ( pi0 -> < gamma > < gamma > ) || ( eta -> < gamma > < gamma > ) || < pi0 > ) | |
TeslaReportAlgo... DEBUG Releasing tool 'ToolSvc.Decays' | |
TeslaReportAlgo... DEBUG The tool 'ToolSvc.Decays' of type 'LoKi::Decay' is released | |
TeslaReportAlgo DEBUG The tool of type 'LoKi::DistanceCalculator' has been added with the name 'TeslaReportAlgo.LoKi::DistanceCalculator' | |
TeslaReportAlgo... DEBUG Property update for OutputLevel : new value = 1 | |
TeslaReportAlgo... DEBUG Initialize base class GaudiCommon<AlgTool> | |
TeslaReportAlgo... DEBUG found CounterSummarySvc OK | |
TeslaReportAlgo... DEBUG List of ALL properties of ReportCheckTool/TeslaReportAlgo.ReportCheckTool #properties = 22 | |
TeslaReportAlgo... DEBUG Property ['Name': Value] = 'ContextService':AlgContextSvc | |
TeslaReportAlgo... DEBUG Property ['Name': Value] = 'StatEntityList':[ ] | |
TeslaReportAlgo... DEBUG Property ['Name': Value] = 'CounterList':[ '.*' ] | |
TeslaReportAlgo... DEBUG Property ['Name': Value] = 'UseEfficiencyRowFormat':True | |
TeslaReportAlgo... DEBUG Property ['Name': Value] = 'EfficiencyRowFormat': |*%|-48.48s|%|50t||%|10d| |%|11.5g| |(%|#9.6g| +- %|-#9.6g|)%%| ------- | ------- | | |
TeslaReportAlgo... DEBUG Property ['Name': Value] = 'RegularRowFormat': | %|-48.48s|%|50t||%|10d| |%|11.7g| |%|#11.5g| |%|#11.5g| |%|#12.5g| |%|#12.5g| | | |
TeslaReportAlgo... DEBUG Property ['Name': Value] = 'StatTableHeader': | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | |
TeslaReportAlgo... DEBUG Property ['Name': Value] = 'GlobalTimeOffset':0.0000000 | |
TeslaReportAlgo... DEBUG Property ['Name': Value] = 'RootOnTES': | |
TeslaReportAlgo... DEBUG Property ['Name': Value] = 'RootInTES': | |
TeslaReportAlgo... DEBUG Property ['Name': Value] = 'Context': | |
TeslaReportAlgo... DEBUG Property ['Name': Value] = 'TypePrint':True | |
TeslaReportAlgo... DEBUG Property ['Name': Value] = 'StatPrint':True | |
TeslaReportAlgo... DEBUG Property ['Name': Value] = 'PropertiesPrint':False | |
TeslaReportAlgo... DEBUG Property ['Name': Value] = 'ErrorsPrint':True | |
TeslaReportAlgo... DEBUG Property ['Name': Value] = 'AuditFinalize':False | |
TeslaReportAlgo... DEBUG Property ['Name': Value] = 'AuditStop':False | |
TeslaReportAlgo... DEBUG Property ['Name': Value] = 'AuditStart':False | |
TeslaReportAlgo... DEBUG Property ['Name': Value] = 'AuditInitialize':False | |
TeslaReportAlgo... DEBUG Property ['Name': Value] = 'AuditTools':False | |
TeslaReportAlgo... DEBUG Property ['Name': Value] = 'OutputLevel':1 | |
TeslaReportAlgo... DEBUG Property ['Name': Value] = 'MonitorService':MonitorSvc | |
TeslaReportAlgo DEBUG The tool of type 'ReportCheckTool' has been added with the name 'TeslaReportAlgo.ReportCheckTool' | |
EventPersistenc... INFO Added successfully Conversion service:RootCnvSvc | |
Writer INFO Data source: EventDataSvc output: DATAFILE='EarlyEvents-Extended-L0-Turbo.xdst' SVC='RootCnvSvc' OPT='REC' | |
EventSelector INFO Stream:EventSelector.DataStreamTool_1 Def:DATAFILE='LFN:/lhcb/user/t/thead/2014_11/92315/92315460/EarlyEvents-Extended-L0-TurboMoore.xdst' SVC='Gaudi::RootEvtSelector' OPT='READ' | |
HistogramPersis...WARNING Histograms saving not required. | |
ApplicationMgr INFO Application Manager Initialized successfully | |
ApplicationMgr INFO Application Manager Started successfully | |
TeslaReportAlgo DEBUG Property update for OutputLevel : new value = 1 | |
EventSelector SUCCESS Reading Event record 1. Record number within stream 1: 1 | |
TeslaReportAlgo DEBUG ==> Execute | |
TeslaReportAlgo... DEBUG SelReports version check requested | |
PropertyConfigSvc INFO resolving alias TCK/0x40b20033 | |
ConfigTarFileAc... INFO opening config.tar in mode ReadOnly | |
PropertyConfigSvc INFO resolved TCK/0x40b20033 to 3f4af5e7f805287f1960de70603ae7ad | |
TeslaReportAlgo... DEBUG The object of type 'LHCb::HltSelReports*' has been retrieved from TS at address 'Hlt2/SelReports' | |
TeslaReportAlgo... DEBUG Examining mother report | |
TeslaReportAlgo... DEBUG Mother report is of a particle | |
TeslaReportAlgo... DEBUG ReportCheckTool finds verision 2 | |
TeslaReportAlgo DEBUG VersionNum = 2 | |
TeslaReportAlgo VERBOSE ServiceLocatorHelper::service: found service EventDataSvc | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Particle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Particles' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::ProtoParticle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Protos' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Vertex,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Vertices' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Track,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Tracks' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::RichPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/RichPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::MuonPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/MuonPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::VertexBase,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Rec/Vertex/Primary' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'LHCb::Relation1D<LHCb::Particle,LHCb::VertexBase>' is registered in TS at address 'Tesla/Particle2VertexRelations' | |
TeslaReportAlgo DEBUG The object of type 'LHCb::HltVertexReports*' has been retrieved from TS at address 'Hlt1/VertexReports' | |
TeslaReportAlgo DEBUG Available vertex reports: | |
TeslaReportAlgo DEBUG PV3D | |
TeslaReportAlgo DEBUG ProtoPV3D | |
TeslaReportAlgo DEBUG Vertex chi2= 19.4902, ndf =29 | |
TeslaReportAlgo DEBUG Vertex key= 0 | |
TeslaReportAlgo DEBUG The object of type 'LHCb::HltSelReports*' has been retrieved from TS at address 'Hlt2/SelReports' | |
TeslaReportAlgo DEBUG Available reports: | |
TeslaReportAlgo DEBUG Hlt2DiMuonDecision | |
TeslaReportAlgo DEBUG Hlt2DiMuonJPsiDecision | |
TeslaReportAlgo DEBUG Hlt2Global | |
TeslaReportAlgo DEBUG Hlt2SingleMuonLowPTDecision | |
TeslaReportAlgo DEBUG Required line has been fired | |
TeslaReportAlgo DEBUG Reference: | |
TeslaReportAlgo DEBUG Particle class ID = 801 | |
TeslaReportAlgo DEBUG Track class ID = 10010 | |
TeslaReportAlgo DEBUG RecVertex class ID = 10030 | |
TeslaReportAlgo DEBUG Vertex class ID = 802 | |
TeslaReportAlgo DEBUG ProtoParticle class ID = 803 | |
TeslaReportAlgo DEBUG { summarizedObjectCLID : 1 numericalInfo : { 0#SelectionID:50201 , } substructure : { 15:801 , } lhcbIDs : { } } | |
TeslaReportAlgo DEBUG MOTHER CLASS ID = 1 | |
TeslaReportAlgo DEBUG LHCbIDs.size() = 0 | |
TeslaReportAlgo DEBUG Number of triggered candidates = 1 | |
TeslaReportAlgo DEBUG [0xb568880] | |
TeslaReportAlgo DEBUG Starting loop over triggered candidates | |
TeslaReportAlgo DEBUG Mother object CLASS ID = 801 | |
TeslaReportAlgo DEBUG Found mother with ID: 443 | |
TeslaReportAlgo DEBUG Mother has substructure consisting of: | |
TeslaReportAlgo DEBUG 801 | |
TeslaReportAlgo DEBUG 801 | |
TeslaReportAlgo DEBUG 802 | |
TeslaReportAlgo DEBUG Available information | |
TeslaReportAlgo DEBUG 0#Particle.particleID.pid = 443 | |
TeslaReportAlgo DEBUG 1#Particle.measuredMass = 3097.11 | |
TeslaReportAlgo DEBUG 10#Particle.momCov00 = 86.9928 | |
TeslaReportAlgo DEBUG 11#Particle.momCov11 = 14.8158 | |
TeslaReportAlgo DEBUG 12#Particle.momCov22 = 3075.41 | |
TeslaReportAlgo DEBUG 13#Particle.momCov33 = 3156.07 | |
TeslaReportAlgo DEBUG 14#Particle.momCov10 = 11.1689 | |
TeslaReportAlgo DEBUG 15#Particle.momCov20 = -261.581 | |
TeslaReportAlgo DEBUG 16#Particle.momCov21 = -20.2185 | |
TeslaReportAlgo DEBUG 17#Particle.momCov30 = -268.727 | |
TeslaReportAlgo DEBUG 18#Particle.momCov31 = -21.0849 | |
TeslaReportAlgo DEBUG 19#Particle.momCov32 = 3115.3 | |
TeslaReportAlgo DEBUG 2#Particle.referencePoint.z = 39.9145 | |
TeslaReportAlgo DEBUG 20#Particle.posmomCov00 = -0.0448495 | |
TeslaReportAlgo DEBUG 21#Particle.posmomCov11 = -0.0565858 | |
TeslaReportAlgo DEBUG 22#Particle.posmomCov22 = -0.0197845 | |
TeslaReportAlgo DEBUG 23#Particle.posmomCov10 = 0.00373908 | |
TeslaReportAlgo DEBUG 24#Particle.posmomCov01 = 0.00668583 | |
TeslaReportAlgo DEBUG 25#Particle.posmomCov20 = 0.00322259 | |
TeslaReportAlgo DEBUG 26#Particle.posmomCov02 = 0.167004 | |
TeslaReportAlgo DEBUG 27#Particle.posmomCov21 = -0.00972472 | |
TeslaReportAlgo DEBUG 28#Particle.posmomCov12 = 0.0185286 | |
TeslaReportAlgo DEBUG 29#Particle.posmomCov30 = 0.000769258 | |
TeslaReportAlgo DEBUG 3#Particle.referencePoint.x = 0.0343714 | |
TeslaReportAlgo DEBUG 30#Particle.posmomCov31 = -0.0105359 | |
TeslaReportAlgo DEBUG 31#Particle.posmomCov32 = 0.002201 | |
TeslaReportAlgo DEBUG 32#Particle.posCov00 = 0.000350116 | |
TeslaReportAlgo DEBUG 33#Particle.posCov11 = 0.000295508 | |
TeslaReportAlgo DEBUG 34#Particle.posCov22 = 0.00878997 | |
TeslaReportAlgo DEBUG 35#Particle.posCov10 = -1.77776e-05 | |
TeslaReportAlgo DEBUG 36#Particle.posCov20 = -0.00162868 | |
TeslaReportAlgo DEBUG 37#Particle.posCov21 = -0.000129964 | |
TeslaReportAlgo DEBUG 4#Particle.referencePoint.y = -0.0225712 | |
TeslaReportAlgo DEBUG 5#Particle.slopes.x = -0.0722595 | |
TeslaReportAlgo DEBUG 6#Particle.slopes.y = -0.0047816 | |
TeslaReportAlgo DEBUG 7#Particle.1/p = 4.49121e-05 | |
TeslaReportAlgo DEBUG 8#Particle.conflevel = -1 | |
TeslaReportAlgo DEBUG 9#Particle.massErr = 8.18917 | |
TeslaReportAlgo DEBUG p = 22265.7 | |
TeslaReportAlgo DEBUG p (par_mom) = 22265.7 | |
TeslaReportAlgo DEBUG pT (par_mom) = 1608.22 | |
TeslaReportAlgo DEBUG Particle measured mass = 3097.11 | |
TeslaReportAlgo DEBUG Particle CL = -1 | |
LHCBCOND INFO Connected to database "sqlite_file:/cvmfs/lhcb.cern.ch/lib/lhcb/SQLite/SQLDDDB/db/LHCBCOND.db/LHCBCOND" | |
LHCBCOND INFO Using TAG "cond-20141007" | |
ONLINE_2012 INFO Connected to database "sqlite_file:/cvmfs/lhcb.cern.ch/lib/lhcb/SQLite/SQLDDDB/db/ONLINE-2012.db/ONLINE" | |
ONLINE_2012 INFO Using TAG "" | |
MagneticFieldSvc INFO Opened magnetic field file : /cvmfs/lhcb.cern.ch/lib/lhcb/DBASE/FieldMap/v5r6/cdf/field101.c1.down.cdf | |
MagneticFieldSvc INFO Opened magnetic field file : /cvmfs/lhcb.cern.ch/lib/lhcb/DBASE/FieldMap/v5r6/cdf/field101.c2.down.cdf | |
MagneticFieldSvc INFO Opened magnetic field file : /cvmfs/lhcb.cern.ch/lib/lhcb/DBASE/FieldMap/v5r6/cdf/field101.c3.down.cdf | |
MagneticFieldSvc INFO Opened magnetic field file : /cvmfs/lhcb.cern.ch/lib/lhcb/DBASE/FieldMap/v5r6/cdf/field101.c4.down.cdf | |
MagneticFieldSvc INFO Map scaled by factor 1 with polarity internally used: -1 signed relative current: -1 | |
TeslaReportAlgo... DEBUG The tool of type 'ParticleTransporter' has been added with the name 'ToolSvc.ParticleTransporter' | |
TeslaReportAlgo DEBUG Daughter level 1 CLASS ID = 801 | |
TeslaReportAlgo DEBUG 1st Gen. Daughter ID: -13 | |
TeslaReportAlgo DEBUG Basic daughter level 1 has substructure consisting of: | |
TeslaReportAlgo DEBUG 10010 | |
TeslaReportAlgo DEBUG 803 | |
TeslaReportAlgo DEBUG 11050 | |
TeslaReportAlgo DEBUG 10010 | |
TeslaReportAlgo DEBUG Available information | |
TeslaReportAlgo DEBUG 0#Particle.particleID.pid = -13 | |
TeslaReportAlgo DEBUG 1#Particle.measuredMass = 105.658 | |
TeslaReportAlgo DEBUG 10#Particle.momCov00 = 74.631 | |
TeslaReportAlgo DEBUG 11#Particle.momCov11 = 8.65791 | |
TeslaReportAlgo DEBUG 12#Particle.momCov22 = 1773.53 | |
TeslaReportAlgo DEBUG 13#Particle.momCov33 = 1846.68 | |
TeslaReportAlgo DEBUG 14#Particle.momCov10 = 9.19027 | |
TeslaReportAlgo DEBUG 15#Particle.momCov20 = -356.851 | |
TeslaReportAlgo DEBUG 16#Particle.momCov21 = -49.5179 | |
TeslaReportAlgo DEBUG 17#Particle.momCov30 = -364.661 | |
TeslaReportAlgo DEBUG 18#Particle.momCov31 = -50.5809 | |
TeslaReportAlgo DEBUG 19#Particle.momCov32 = 1809.68 | |
TeslaReportAlgo DEBUG 2#Particle.referencePoint.z = 40.0513 | |
TeslaReportAlgo DEBUG 20#Particle.posmomCov00 = -0.0111783 | |
TeslaReportAlgo DEBUG 21#Particle.posmomCov11 = -0.0546061 | |
TeslaReportAlgo DEBUG 22#Particle.posmomCov22 = 0 | |
TeslaReportAlgo DEBUG 23#Particle.posmomCov10 = 0.00723737 | |
TeslaReportAlgo DEBUG 24#Particle.posmomCov01 = 0.0113254 | |
TeslaReportAlgo DEBUG 25#Particle.posmomCov20 = 0.000383609 | |
TeslaReportAlgo DEBUG 26#Particle.posmomCov02 = 0 | |
TeslaReportAlgo DEBUG 27#Particle.posmomCov21 = -0.0172834 | |
TeslaReportAlgo DEBUG 28#Particle.posmomCov12 = 0 | |
TeslaReportAlgo DEBUG 29#Particle.posmomCov30 = 0.00237533 | |
TeslaReportAlgo DEBUG 3#Particle.referencePoint.x = 0.00222661 | |
TeslaReportAlgo DEBUG 30#Particle.posmomCov31 = -0.0176227 | |
TeslaReportAlgo DEBUG 31#Particle.posmomCov32 = 0 | |
TeslaReportAlgo DEBUG 32#Particle.posCov00 = 5.60604e-05 | |
TeslaReportAlgo DEBUG 33#Particle.posCov11 = 0.000510116 | |
TeslaReportAlgo DEBUG 34#Particle.posCov22 = 0 | |
TeslaReportAlgo DEBUG 35#Particle.posCov10 = -7.49075e-05 | |
TeslaReportAlgo DEBUG 36#Particle.posCov20 = 0 | |
TeslaReportAlgo DEBUG 37#Particle.posCov21 = 0 | |
TeslaReportAlgo DEBUG 4#Particle.referencePoint.y = 0.0017279 | |
TeslaReportAlgo DEBUG 5#Particle.slopes.x = -0.201252 | |
TeslaReportAlgo DEBUG 6#Particle.slopes.y = -0.0289103 | |
TeslaReportAlgo DEBUG 7#Particle.1/p = 8.32259e-05 | |
TeslaReportAlgo DEBUG 8#Particle.conflevel = 0.250063 | |
TeslaReportAlgo DEBUG 9#Particle.massErr = 0 | |
TeslaReportAlgo DEBUG p = 12015.5 | |
TeslaReportAlgo DEBUG p (par_mom) = 12015.5 | |
TeslaReportAlgo DEBUG pT (par_mom) = 2393.98 | |
TeslaReportAlgo DEBUG Particle measured mass = 105.658 | |
TeslaReportAlgo DEBUG Particle CL = 0.250063 | |
TeslaReportAlgo DEBUG Available information (track) | |
TeslaReportAlgo DEBUG 0#Track.firstState.z = 40.0513 | |
TeslaReportAlgo DEBUG 1#Track.firstState.x = 0.00222661 | |
TeslaReportAlgo DEBUG 10#Track.flags = 2.19556e+06 | |
TeslaReportAlgo DEBUG 11#Track.lastState.z = 11900 | |
TeslaReportAlgo DEBUG 12#Track.lastState.x = -3127.85 | |
TeslaReportAlgo DEBUG 13#Track.lastState.y = -356.013 | |
TeslaReportAlgo DEBUG 14#Track.lastState.tx = -0.313827 | |
TeslaReportAlgo DEBUG 15#Track.lastState.ty = -0.0305721 | |
TeslaReportAlgo DEBUG 16#Track.lastState.qOverP = 8.35863e-05 | |
TeslaReportAlgo DEBUG 2#Track.firstState.y = 0.0017279 | |
TeslaReportAlgo DEBUG 3#Track.firstState.tx = -0.201252 | |
TeslaReportAlgo DEBUG 4#Track.firstState.ty = -0.0289103 | |
TeslaReportAlgo DEBUG 5#Track.firstState.qOverP = 8.32259e-05 | |
TeslaReportAlgo DEBUG 6#Track.chi2PerDoF = 0.799383 | |
TeslaReportAlgo DEBUG 7#Track.nDoF = 29 | |
TeslaReportAlgo DEBUG 8#Track.Likelihood = 999 | |
TeslaReportAlgo DEBUG 9#Track.GhostProb = 999 | |
TeslaReportAlgo DEBUG FastTTValidationTool/ValidateWithTT = 1 | |
TeslaReportAlgo DEBUG MatchVeloMuon = 1 | |
TeslaReportAlgo DEBUG PatForwardTool/LooseForward = 1 | |
TeslaReportAlgo DEBUG PatForwardTool/TightForward = 1 | |
TeslaReportAlgo DEBUG Track #chi^{2}/DoF = 0.799383 | |
TeslaReportAlgo DEBUG Track extra for Rep v2, adding last state | |
TeslaReportAlgo DEBUG Track details added | |
TeslaReportAlgo DEBUG Available information (proto) | |
TeslaReportAlgo DEBUG 0#Proto.extraInfo.IsPhoton = -1000 | |
TeslaReportAlgo DEBUG Proto isPhoton = -1000 | |
TeslaReportAlgo DEBUG ProtoParticle details added | |
TeslaReportAlgo DEBUG Available information (muon) | |
TeslaReportAlgo DEBUG 0#Muon.MuonLLMu = -0.843505 | |
TeslaReportAlgo DEBUG 1#Muon.MuonLLBg = -4.20232 | |
TeslaReportAlgo DEBUG 2#Muon.NShared = 0 | |
TeslaReportAlgo DEBUG 3#Muon.Status = 31 | |
TeslaReportAlgo DEBUG 4#Muon.IsMuon = 1 | |
TeslaReportAlgo DEBUG 5#Muon.IsMuonLoose = 1 | |
TeslaReportAlgo DEBUG 6#Muon.IsMuonTight = 1 | |
TeslaReportAlgo DEBUG Muon LLMu = -0.843505 | |
TeslaReportAlgo DEBUG MuonPID details added | |
TeslaReportAlgo DEBUG Available information (track) | |
TeslaReportAlgo DEBUG 0#Track.firstState.z = 9450 | |
TeslaReportAlgo DEBUG 1#Track.firstState.x = -2359.85 | |
TeslaReportAlgo DEBUG 10#Track.flags = 167 | |
TeslaReportAlgo DEBUG 11#Track.lastState.z = 9450 | |
TeslaReportAlgo DEBUG 12#Track.lastState.x = -2359.85 | |
TeslaReportAlgo DEBUG 13#Track.lastState.y = -281.18 | |
TeslaReportAlgo DEBUG 14#Track.lastState.tx = -0.312619 | |
TeslaReportAlgo DEBUG 15#Track.lastState.ty = -0.0304973 | |
TeslaReportAlgo DEBUG 16#Track.lastState.qOverP = 8.35032e-05 | |
TeslaReportAlgo DEBUG 2#Track.firstState.y = -281.18 | |
TeslaReportAlgo DEBUG 3#Track.firstState.tx = -0.312619 | |
TeslaReportAlgo DEBUG 4#Track.firstState.ty = -0.0304973 | |
TeslaReportAlgo DEBUG 5#Track.firstState.qOverP = 8.35032e-05 | |
TeslaReportAlgo DEBUG 6#Track.chi2PerDoF = 0 | |
TeslaReportAlgo DEBUG 7#Track.nDoF = 0 | |
TeslaReportAlgo DEBUG 8#Track.Likelihood = 999 | |
TeslaReportAlgo DEBUG 9#Track.GhostProb = 999 | |
TeslaReportAlgo DEBUG Track #chi^{2}/DoF = 0 | |
TeslaReportAlgo DEBUG Track extra for Rep v2, adding last state | |
TeslaReportAlgo DEBUG Track details added | |
TeslaReportAlgo DEBUG Starting to tie pieces together | |
TeslaReportAlgo DEBUG Pieces tied together | |
TeslaReportAlgo DEBUG Daughter level 1 CLASS ID = 801 | |
TeslaReportAlgo DEBUG 1st Gen. Daughter ID: 13 | |
TeslaReportAlgo DEBUG Basic daughter level 1 has substructure consisting of: | |
TeslaReportAlgo DEBUG 10010 | |
TeslaReportAlgo DEBUG 803 | |
TeslaReportAlgo DEBUG 11050 | |
TeslaReportAlgo DEBUG 10010 | |
TeslaReportAlgo DEBUG Available information | |
TeslaReportAlgo DEBUG 0#Particle.particleID.pid = 13 | |
TeslaReportAlgo DEBUG 1#Particle.measuredMass = 105.658 | |
TeslaReportAlgo DEBUG 10#Particle.momCov00 = 12.3619 | |
TeslaReportAlgo DEBUG 11#Particle.momCov11 = 6.16648 | |
TeslaReportAlgo DEBUG 12#Particle.momCov22 = 1302.11 | |
TeslaReportAlgo DEBUG 13#Particle.momCov33 = 1309.63 | |
TeslaReportAlgo DEBUG 14#Particle.momCov10 = 1.97754 | |
TeslaReportAlgo DEBUG 15#Particle.momCov20 = 95.2763 | |
TeslaReportAlgo DEBUG 16#Particle.momCov21 = 29.2554 | |
TeslaReportAlgo DEBUG 17#Particle.momCov30 = 95.9405 | |
TeslaReportAlgo DEBUG 18#Particle.momCov31 = 29.4509 | |
TeslaReportAlgo DEBUG 19#Particle.momCov32 = 1305.85 | |
TeslaReportAlgo DEBUG 2#Particle.referencePoint.z = 39.7466 | |
TeslaReportAlgo DEBUG 20#Particle.posmomCov00 = -0.0572416 | |
TeslaReportAlgo DEBUG 21#Particle.posmomCov11 = -0.0589098 | |
TeslaReportAlgo DEBUG 22#Particle.posmomCov22 = 0 | |
TeslaReportAlgo DEBUG 23#Particle.posmomCov10 = 0.00284879 | |
TeslaReportAlgo DEBUG 24#Particle.posmomCov01 = 0.0031708 | |
TeslaReportAlgo DEBUG 25#Particle.posmomCov20 = 0.00227765 | |
TeslaReportAlgo DEBUG 26#Particle.posmomCov02 = 0 | |
TeslaReportAlgo DEBUG 27#Particle.posmomCov21 = 9.12362e-05 | |
TeslaReportAlgo DEBUG 28#Particle.posmomCov12 = 0 | |
TeslaReportAlgo DEBUG 29#Particle.posmomCov30 = -0.00185003 | |
TeslaReportAlgo DEBUG 3#Particle.referencePoint.x = 0.0317369 | |
TeslaReportAlgo DEBUG 30#Particle.posmomCov31 = -0.000996929 | |
TeslaReportAlgo DEBUG 31#Particle.posmomCov32 = 0 | |
TeslaReportAlgo DEBUG 32#Particle.posCov00 = 0.000663388 | |
TeslaReportAlgo DEBUG 33#Particle.posCov11 = 0.000694142 | |
TeslaReportAlgo DEBUG 34#Particle.posCov22 = 0 | |
TeslaReportAlgo DEBUG 35#Particle.posCov10 = -5.61926e-05 | |
TeslaReportAlgo DEBUG 36#Particle.posCov20 = 0 | |
TeslaReportAlgo DEBUG 37#Particle.posCov21 = 0 | |
TeslaReportAlgo DEBUG 4#Particle.referencePoint.y = -0.0641321 | |
TeslaReportAlgo DEBUG 5#Particle.slopes.x = 0.0733246 | |
TeslaReportAlgo DEBUG 6#Particle.slopes.y = 0.022469 | |
TeslaReportAlgo DEBUG 7#Particle.1/p = 9.55778e-05 | |
TeslaReportAlgo DEBUG 8#Particle.conflevel = 0.250063 | |
TeslaReportAlgo DEBUG 9#Particle.massErr = 0 | |
TeslaReportAlgo DEBUG p = 10462.7 | |
TeslaReportAlgo DEBUG p (par_mom) = 10462.7 | |
TeslaReportAlgo DEBUG pT (par_mom) = 800.034 | |
TeslaReportAlgo DEBUG Particle measured mass = 105.658 | |
TeslaReportAlgo DEBUG Particle CL = 0.250063 | |
TeslaReportAlgo DEBUG Available information (track) | |
TeslaReportAlgo DEBUG 0#Track.firstState.z = 39.7466 | |
TeslaReportAlgo DEBUG 1#Track.firstState.x = 0.0317369 | |
TeslaReportAlgo DEBUG 10#Track.flags = 2.19556e+06 | |
TeslaReportAlgo DEBUG 11#Track.lastState.z = 11900 | |
TeslaReportAlgo DEBUG 12#Track.lastState.x = 1682.07 | |
TeslaReportAlgo DEBUG 13#Track.lastState.y = 268.964 | |
TeslaReportAlgo DEBUG 14#Track.lastState.tx = 0.197757 | |
TeslaReportAlgo DEBUG 15#Track.lastState.ty = 0.0227786 | |
TeslaReportAlgo DEBUG 16#Track.lastState.qOverP = -9.59984e-05 | |
TeslaReportAlgo DEBUG 2#Track.firstState.y = -0.0641321 | |
TeslaReportAlgo DEBUG 3#Track.firstState.tx = 0.0733246 | |
TeslaReportAlgo DEBUG 4#Track.firstState.ty = 0.022469 | |
TeslaReportAlgo DEBUG 5#Track.firstState.qOverP = -9.55778e-05 | |
TeslaReportAlgo DEBUG 6#Track.chi2PerDoF = 0.728345 | |
TeslaReportAlgo DEBUG 7#Track.nDoF = 31 | |
TeslaReportAlgo DEBUG 8#Track.Likelihood = 999 | |
TeslaReportAlgo DEBUG 9#Track.GhostProb = 999 | |
TeslaReportAlgo DEBUG MatchVeloMuon = 1 | |
TeslaReportAlgo DEBUG PatForwardTool/LooseForward = 1 | |
TeslaReportAlgo DEBUG Track #chi^{2}/DoF = 0.728345 | |
TeslaReportAlgo DEBUG Track extra for Rep v2, adding last state | |
TeslaReportAlgo DEBUG Track details added | |
TeslaReportAlgo DEBUG Available information (proto) | |
TeslaReportAlgo DEBUG 0#Proto.extraInfo.IsPhoton = -1000 | |
TeslaReportAlgo DEBUG Proto isPhoton = -1000 | |
TeslaReportAlgo DEBUG ProtoParticle details added | |
TeslaReportAlgo DEBUG Available information (muon) | |
TeslaReportAlgo DEBUG 0#Muon.MuonLLMu = -0.0767731 | |
TeslaReportAlgo DEBUG 1#Muon.MuonLLBg = -2.71145 | |
TeslaReportAlgo DEBUG 2#Muon.NShared = 0 | |
TeslaReportAlgo DEBUG 3#Muon.Status = 31 | |
TeslaReportAlgo DEBUG 4#Muon.IsMuon = 1 | |
TeslaReportAlgo DEBUG 5#Muon.IsMuonLoose = 1 | |
TeslaReportAlgo DEBUG 6#Muon.IsMuonTight = 1 | |
TeslaReportAlgo DEBUG Muon LLMu = -0.0767731 | |
TeslaReportAlgo DEBUG MuonPID details added | |
TeslaReportAlgo DEBUG Available information (track) | |
TeslaReportAlgo DEBUG 0#Track.firstState.z = 9450 | |
TeslaReportAlgo DEBUG 1#Track.firstState.x = 1199.04 | |
TeslaReportAlgo DEBUG 10#Track.flags = 167 | |
TeslaReportAlgo DEBUG 11#Track.lastState.z = 9450 | |
TeslaReportAlgo DEBUG 12#Track.lastState.x = 1199.04 | |
TeslaReportAlgo DEBUG 13#Track.lastState.y = 213.191 | |
TeslaReportAlgo DEBUG 14#Track.lastState.tx = 0.195837 | |
TeslaReportAlgo DEBUG 15#Track.lastState.ty = 0.0227454 | |
TeslaReportAlgo DEBUG 16#Track.lastState.qOverP = -9.58943e-05 | |
TeslaReportAlgo DEBUG 2#Track.firstState.y = 213.191 | |
TeslaReportAlgo DEBUG 3#Track.firstState.tx = 0.195837 | |
TeslaReportAlgo DEBUG 4#Track.firstState.ty = 0.0227454 | |
TeslaReportAlgo DEBUG 5#Track.firstState.qOverP = -9.58943e-05 | |
TeslaReportAlgo DEBUG 6#Track.chi2PerDoF = 0 | |
TeslaReportAlgo DEBUG 7#Track.nDoF = 0 | |
TeslaReportAlgo DEBUG 8#Track.Likelihood = 999 | |
TeslaReportAlgo DEBUG 9#Track.GhostProb = 999 | |
TeslaReportAlgo DEBUG Track #chi^{2}/DoF = 0 | |
TeslaReportAlgo DEBUG Track extra for Rep v2, adding last state | |
TeslaReportAlgo DEBUG Track details added | |
TeslaReportAlgo DEBUG Starting to tie pieces together | |
TeslaReportAlgo DEBUG Pieces tied together | |
TeslaReportAlgo DEBUG Daughter level 1 CLASS ID = 802 | |
TeslaReportAlgo DEBUG Available information (vertex) | |
TeslaReportAlgo DEBUG 0#Vertex.chi2 = 3.69515 | |
TeslaReportAlgo DEBUG 1#Vertex.ndf = 1 | |
TeslaReportAlgo DEBUG 10#Vertex.cov20 = -0.00162868 | |
TeslaReportAlgo DEBUG 11#Vertex.cov21 = -0.000129964 | |
TeslaReportAlgo DEBUG 2#Vertex.position.x = 0.0343714 | |
TeslaReportAlgo DEBUG 3#Vertex.position.y = -0.0225712 | |
TeslaReportAlgo DEBUG 4#Vertex.position.z = 39.9145 | |
TeslaReportAlgo DEBUG 5#Vertex.technique = 0 | |
TeslaReportAlgo DEBUG 6#Vertex.cov00 = 0.000350116 | |
TeslaReportAlgo DEBUG 7#Vertex.cov11 = 0.000295508 | |
TeslaReportAlgo DEBUG 8#Vertex.cov22 = 0.00878997 | |
TeslaReportAlgo DEBUG 9#Vertex.cov10 = -1.77776e-05 | |
TeslaReportAlgo DEBUG Decay vertex chi2 = 3.69515 | |
TeslaReportAlgo DEBUG Setting mother decay vertex | |
TeslaReportAlgo DEBUG End of algorithm execution | |
IODataManager INFO Referring to dataset EarlyEvents-Extended-L0-Turbo.xdst by its file ID:D62CC253-B177-E411-9409-C4346BC076D0 | |
ONLINE_2008 INFO Connected to database "sqlite_file:/cvmfs/lhcb.cern.ch/lib/lhcb/SQLite/SQLDDDB/db/ONLINE-2008.db/ONLINE" | |
ONLINE_2008 INFO Using TAG "" | |
MagneticFieldSvc INFO Opened magnetic field file : /cvmfs/lhcb.cern.ch/lib/lhcb/DBASE/FieldMap/v5r6/cdf/field048.c1.an.up.cdf | |
MagneticFieldSvc INFO Opened magnetic field file : /cvmfs/lhcb.cern.ch/lib/lhcb/DBASE/FieldMap/v5r6/cdf/field048.c2.an.up.cdf | |
MagneticFieldSvc INFO Opened magnetic field file : /cvmfs/lhcb.cern.ch/lib/lhcb/DBASE/FieldMap/v5r6/cdf/field048.c3.an.up.cdf | |
MagneticFieldSvc INFO Opened magnetic field file : /cvmfs/lhcb.cern.ch/lib/lhcb/DBASE/FieldMap/v5r6/cdf/field048.c4.an.up.cdf | |
MagneticFieldSvc INFO Map scaled by factor 8.54701e-07 with polarity internally used: 1 signed relative current: 8.54701e-07 | |
TeslaReportAlgo DEBUG ==> Execute | |
TeslaReportAlgo... DEBUG SelReports version check requested | |
TeslaReportAlgo... DEBUG The object of type 'LHCb::HltSelReports*' has been retrieved from TS at address 'Hlt2/SelReports' | |
TeslaReportAlgo... DEBUG Examining mother report | |
TeslaReportAlgo... DEBUG Mother report is of a particle | |
TeslaReportAlgo... DEBUG ReportCheckTool finds verision 2 | |
TeslaReportAlgo DEBUG VersionNum = 2 | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Particle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Particles' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::ProtoParticle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Protos' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Vertex,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Vertices' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Track,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Tracks' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::RichPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/RichPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::MuonPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/MuonPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::VertexBase,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Rec/Vertex/Primary' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'LHCb::Relation1D<LHCb::Particle,LHCb::VertexBase>' is registered in TS at address 'Tesla/Particle2VertexRelations' | |
TeslaReportAlgo DEBUG The object of type 'LHCb::HltVertexReports*' has been retrieved from TS at address 'Hlt1/VertexReports' | |
TeslaReportAlgo DEBUG Available vertex reports: | |
TeslaReportAlgo DEBUG PV3D | |
TeslaReportAlgo DEBUG ProtoPV3D | |
TeslaReportAlgo DEBUG Vertex chi2= 36.7084, ndf =55 | |
TeslaReportAlgo DEBUG Vertex key= 0 | |
TeslaReportAlgo DEBUG The object of type 'LHCb::HltSelReports*' has been retrieved from TS at address 'Hlt2/SelReports' | |
TeslaReportAlgo DEBUG Available reports: | |
TeslaReportAlgo DEBUG Hlt2DiMuonDecision | |
TeslaReportAlgo DEBUG Hlt2DiMuonJPsiDecision | |
TeslaReportAlgo DEBUG Hlt2Global | |
TeslaReportAlgo DEBUG Hlt2SingleMuonLowPTDecision | |
TeslaReportAlgo DEBUG Required line has been fired | |
TeslaReportAlgo DEBUG Reference: | |
TeslaReportAlgo DEBUG Particle class ID = 801 | |
TeslaReportAlgo DEBUG Track class ID = 10010 | |
TeslaReportAlgo DEBUG RecVertex class ID = 10030 | |
TeslaReportAlgo DEBUG Vertex class ID = 802 | |
TeslaReportAlgo DEBUG ProtoParticle class ID = 803 | |
TeslaReportAlgo DEBUG { summarizedObjectCLID : 1 numericalInfo : { 0#SelectionID:50201 , } substructure : { 17:801 , 18:801 , } lhcbIDs : { } } | |
TeslaReportAlgo DEBUG MOTHER CLASS ID = 1 | |
TeslaReportAlgo DEBUG LHCbIDs.size() = 0 | |
TeslaReportAlgo DEBUG Number of triggered candidates = 2 | |
TeslaReportAlgo DEBUG [0xb568480, 0xb568400] | |
TeslaReportAlgo DEBUG Starting loop over triggered candidates | |
TeslaReportAlgo DEBUG Mother object CLASS ID = 801 | |
TeslaReportAlgo DEBUG Found mother with ID: 443 | |
TeslaReportAlgo DEBUG Mother has substructure consisting of: | |
TeslaReportAlgo DEBUG 801 | |
TeslaReportAlgo DEBUG 801 | |
TeslaReportAlgo DEBUG 802 | |
TeslaReportAlgo DEBUG Available information | |
TeslaReportAlgo DEBUG 0#Particle.particleID.pid = 443 | |
TeslaReportAlgo DEBUG 1#Particle.measuredMass = 3099.32 | |
TeslaReportAlgo DEBUG 10#Particle.momCov00 = 183.732 | |
TeslaReportAlgo DEBUG 11#Particle.momCov11 = 148.048 | |
TeslaReportAlgo DEBUG 12#Particle.momCov22 = 23011.1 | |
TeslaReportAlgo DEBUG 13#Particle.momCov33 = 23303.6 | |
TeslaReportAlgo DEBUG 14#Particle.momCov10 = 75.832 | |
TeslaReportAlgo DEBUG 15#Particle.momCov20 = -1588.12 | |
TeslaReportAlgo DEBUG 16#Particle.momCov21 = -1580.4 | |
TeslaReportAlgo DEBUG 17#Particle.momCov30 = -1602.85 | |
TeslaReportAlgo DEBUG 18#Particle.momCov31 = -1589.56 | |
TeslaReportAlgo DEBUG 19#Particle.momCov32 = 23156.7 | |
TeslaReportAlgo DEBUG 2#Particle.referencePoint.z = 63.027 | |
TeslaReportAlgo DEBUG 20#Particle.posmomCov00 = -0.0477749 | |
TeslaReportAlgo DEBUG 21#Particle.posmomCov11 = -0.039646 | |
TeslaReportAlgo DEBUG 22#Particle.posmomCov22 = 1.72135 | |
TeslaReportAlgo DEBUG 23#Particle.posmomCov10 = 0.0262698 | |
TeslaReportAlgo DEBUG 24#Particle.posmomCov01 = -0.00528919 | |
TeslaReportAlgo DEBUG 25#Particle.posmomCov20 = -0.235398 | |
TeslaReportAlgo DEBUG 26#Particle.posmomCov02 = 0.151157 | |
TeslaReportAlgo DEBUG 27#Particle.posmomCov21 = -0.0787429 | |
TeslaReportAlgo DEBUG 28#Particle.posmomCov12 = -0.146513 | |
TeslaReportAlgo DEBUG 29#Particle.posmomCov30 = -0.236171 | |
TeslaReportAlgo DEBUG 3#Particle.referencePoint.x = -0.0402271 | |
TeslaReportAlgo DEBUG 30#Particle.posmomCov31 = -0.0778975 | |
TeslaReportAlgo DEBUG 31#Particle.posmomCov32 = 1.7493 | |
TeslaReportAlgo DEBUG 32#Particle.posCov00 = 0.000442808 | |
TeslaReportAlgo DEBUG 33#Particle.posCov11 = 0.000212432 | |
TeslaReportAlgo DEBUG 34#Particle.posCov22 = 0.0274779 | |
TeslaReportAlgo DEBUG 35#Particle.posCov10 = 0.000163594 | |
TeslaReportAlgo DEBUG 36#Particle.posCov20 = -0.00319967 | |
TeslaReportAlgo DEBUG 37#Particle.posCov21 = -0.00157045 | |
TeslaReportAlgo DEBUG 4#Particle.referencePoint.y = -0.0102745 | |
TeslaReportAlgo DEBUG 5#Particle.slopes.x = -0.0838418 | |
TeslaReportAlgo DEBUG 6#Particle.slopes.y = -0.0604113 | |
TeslaReportAlgo DEBUG 7#Particle.1/p = 1.968e-05 | |
TeslaReportAlgo DEBUG 8#Particle.conflevel = -1 | |
TeslaReportAlgo DEBUG 9#Particle.massErr = 10.1139 | |
TeslaReportAlgo DEBUG p = 50813 | |
TeslaReportAlgo DEBUG p (par_mom) = 50813 | |
TeslaReportAlgo DEBUG pT (par_mom) = 5223.16 | |
TeslaReportAlgo DEBUG Particle measured mass = 3099.32 | |
TeslaReportAlgo DEBUG Particle CL = -1 | |
TeslaReportAlgo DEBUG Daughter level 1 CLASS ID = 801 | |
TeslaReportAlgo DEBUG 1st Gen. Daughter ID: -13 | |
TeslaReportAlgo DEBUG Basic daughter level 1 has substructure consisting of: | |
TeslaReportAlgo DEBUG 10010 | |
TeslaReportAlgo DEBUG 803 | |
TeslaReportAlgo DEBUG 11050 | |
TeslaReportAlgo DEBUG 10010 | |
TeslaReportAlgo DEBUG Available information | |
TeslaReportAlgo DEBUG 0#Particle.particleID.pid = -13 | |
TeslaReportAlgo DEBUG 1#Particle.measuredMass = 105.658 | |
TeslaReportAlgo DEBUG 10#Particle.momCov00 = 37.8763 | |
TeslaReportAlgo DEBUG 11#Particle.momCov11 = 136.005 | |
TeslaReportAlgo DEBUG 12#Particle.momCov22 = 16719.3 | |
TeslaReportAlgo DEBUG 13#Particle.momCov33 = 16867.4 | |
TeslaReportAlgo DEBUG 14#Particle.momCov10 = 54.6339 | |
TeslaReportAlgo DEBUG 15#Particle.momCov20 = -644.956 | |
TeslaReportAlgo DEBUG 16#Particle.momCov21 = -1436 | |
TeslaReportAlgo DEBUG 17#Particle.momCov30 = -648.262 | |
TeslaReportAlgo DEBUG 18#Particle.momCov31 = -1443.39 | |
TeslaReportAlgo DEBUG 19#Particle.momCov32 = 16793.1 | |
TeslaReportAlgo DEBUG 2#Particle.referencePoint.z = 62.9616 | |
TeslaReportAlgo DEBUG 20#Particle.posmomCov00 = -0.0436032 | |
TeslaReportAlgo DEBUG 21#Particle.posmomCov11 = -0.0500793 | |
TeslaReportAlgo DEBUG 22#Particle.posmomCov22 = 0 | |
TeslaReportAlgo DEBUG 23#Particle.posmomCov10 = 0.021514 | |
TeslaReportAlgo DEBUG 24#Particle.posmomCov01 = 0.00413517 | |
TeslaReportAlgo DEBUG 25#Particle.posmomCov20 = -0.183248 | |
TeslaReportAlgo DEBUG 26#Particle.posmomCov02 = 0 | |
TeslaReportAlgo DEBUG 27#Particle.posmomCov21 = 0.0366672 | |
TeslaReportAlgo DEBUG 28#Particle.posmomCov12 = 0 | |
TeslaReportAlgo DEBUG 29#Particle.posmomCov30 = -0.182507 | |
TeslaReportAlgo DEBUG 3#Particle.referencePoint.x = -0.0329224 | |
TeslaReportAlgo DEBUG 30#Particle.posmomCov31 = 0.0406052 | |
TeslaReportAlgo DEBUG 31#Particle.posmomCov32 = 0 | |
TeslaReportAlgo DEBUG 32#Particle.posCov00 = 0.00024746 | |
TeslaReportAlgo DEBUG 33#Particle.posCov11 = 0.000206989 | |
TeslaReportAlgo DEBUG 34#Particle.posCov22 = 0 | |
TeslaReportAlgo DEBUG 35#Particle.posCov10 = -4.48749e-05 | |
TeslaReportAlgo DEBUG 36#Particle.posCov20 = 0 | |
TeslaReportAlgo DEBUG 37#Particle.posCov21 = 0 | |
TeslaReportAlgo DEBUG 4#Particle.referencePoint.y = 0.00384103 | |
TeslaReportAlgo DEBUG 5#Particle.slopes.x = -0.0404896 | |
TeslaReportAlgo DEBUG 6#Particle.slopes.y = -0.0856109 | |
TeslaReportAlgo DEBUG 7#Particle.1/p = 3.29019e-05 | |
TeslaReportAlgo DEBUG 8#Particle.conflevel = 0.250063 | |
TeslaReportAlgo DEBUG 9#Particle.massErr = 0 | |
TeslaReportAlgo DEBUG p = 30393.4 | |
TeslaReportAlgo DEBUG p (par_mom) = 30393.4 | |
TeslaReportAlgo DEBUG pT (par_mom) = 2865.52 | |
TeslaReportAlgo DEBUG Particle measured mass = 105.658 | |
TeslaReportAlgo DEBUG Particle CL = 0.250063 | |
TeslaReportAlgo DEBUG Available information (track) | |
TeslaReportAlgo DEBUG 0#Track.firstState.z = 62.9616 | |
TeslaReportAlgo DEBUG 1#Track.firstState.x = -0.0329224 | |
TeslaReportAlgo DEBUG 10#Track.flags = 2.19556e+06 | |
TeslaReportAlgo DEBUG 11#Track.lastState.z = 11900 | |
TeslaReportAlgo DEBUG 12#Track.lastState.x = -756.943 | |
TeslaReportAlgo DEBUG 13#Track.lastState.y = -1014.3 | |
TeslaReportAlgo DEBUG 14#Track.lastState.tx = -0.082945 | |
TeslaReportAlgo DEBUG 15#Track.lastState.ty = -0.0856978 | |
TeslaReportAlgo DEBUG 16#Track.lastState.qOverP = 3.29577e-05 | |
TeslaReportAlgo DEBUG 2#Track.firstState.y = 0.00384103 | |
TeslaReportAlgo DEBUG 3#Track.firstState.tx = -0.0404896 | |
TeslaReportAlgo DEBUG 4#Track.firstState.ty = -0.0856109 | |
TeslaReportAlgo DEBUG 5#Track.firstState.qOverP = 3.29019e-05 | |
TeslaReportAlgo DEBUG 6#Track.chi2PerDoF = 1.10525 | |
TeslaReportAlgo DEBUG 7#Track.nDoF = 32 | |
TeslaReportAlgo DEBUG 8#Track.Likelihood = 999 | |
TeslaReportAlgo DEBUG 9#Track.GhostProb = 999 | |
TeslaReportAlgo DEBUG MatchVeloMuon = 1 | |
TeslaReportAlgo DEBUG PatForwardTool/LooseForward = 1 | |
TeslaReportAlgo DEBUG Track #chi^{2}/DoF = 1.10525 | |
TeslaReportAlgo DEBUG Track extra for Rep v2, adding last state | |
TeslaReportAlgo DEBUG Track details added | |
TeslaReportAlgo DEBUG Available information (proto) | |
TeslaReportAlgo DEBUG 0#Proto.extraInfo.IsPhoton = -1000 | |
TeslaReportAlgo DEBUG Proto isPhoton = -1000 | |
TeslaReportAlgo DEBUG ProtoParticle details added | |
TeslaReportAlgo DEBUG Available information (muon) | |
TeslaReportAlgo DEBUG 0#Muon.MuonLLMu = -0.705827 | |
TeslaReportAlgo DEBUG 1#Muon.MuonLLBg = -5.06568 | |
TeslaReportAlgo DEBUG 2#Muon.NShared = 0 | |
TeslaReportAlgo DEBUG 3#Muon.Status = 31 | |
TeslaReportAlgo DEBUG 4#Muon.IsMuon = 1 | |
TeslaReportAlgo DEBUG 5#Muon.IsMuonLoose = 1 | |
TeslaReportAlgo DEBUG 6#Muon.IsMuonTight = 1 | |
TeslaReportAlgo DEBUG Muon LLMu = -0.705827 | |
TeslaReportAlgo DEBUG MuonPID details added | |
TeslaReportAlgo DEBUG Available information (track) | |
TeslaReportAlgo DEBUG 0#Track.firstState.z = 9450 | |
TeslaReportAlgo DEBUG 1#Track.firstState.x = -554.184 | |
TeslaReportAlgo DEBUG 10#Track.flags = 167 | |
TeslaReportAlgo DEBUG 11#Track.lastState.z = 9450 | |
TeslaReportAlgo DEBUG 12#Track.lastState.x = -554.184 | |
TeslaReportAlgo DEBUG 13#Track.lastState.y = -804.359 | |
TeslaReportAlgo DEBUG 14#Track.lastState.tx = -0.0823611 | |
TeslaReportAlgo DEBUG 15#Track.lastState.ty = -0.0856852 | |
TeslaReportAlgo DEBUG 16#Track.lastState.qOverP = 3.29444e-05 | |
TeslaReportAlgo DEBUG 2#Track.firstState.y = -804.359 | |
TeslaReportAlgo DEBUG 3#Track.firstState.tx = -0.0823611 | |
TeslaReportAlgo DEBUG 4#Track.firstState.ty = -0.0856852 | |
TeslaReportAlgo DEBUG 5#Track.firstState.qOverP = 3.29444e-05 | |
TeslaReportAlgo DEBUG 6#Track.chi2PerDoF = 0 | |
TeslaReportAlgo DEBUG 7#Track.nDoF = 0 | |
TeslaReportAlgo DEBUG 8#Track.Likelihood = 999 | |
TeslaReportAlgo DEBUG 9#Track.GhostProb = 999 | |
TeslaReportAlgo DEBUG Track #chi^{2}/DoF = 0 | |
TeslaReportAlgo DEBUG Track extra for Rep v2, adding last state | |
TeslaReportAlgo DEBUG Track details added | |
TeslaReportAlgo DEBUG Starting to tie pieces together | |
TeslaReportAlgo DEBUG Pieces tied together | |
TeslaReportAlgo DEBUG Daughter level 1 CLASS ID = 801 | |
TeslaReportAlgo DEBUG 1st Gen. Daughter ID: 13 | |
TeslaReportAlgo DEBUG Basic daughter level 1 has substructure consisting of: | |
TeslaReportAlgo DEBUG 10010 | |
TeslaReportAlgo DEBUG 803 | |
TeslaReportAlgo DEBUG 11050 | |
TeslaReportAlgo DEBUG 10010 | |
TeslaReportAlgo DEBUG Available information | |
TeslaReportAlgo DEBUG 0#Particle.particleID.pid = 13 | |
TeslaReportAlgo DEBUG 1#Particle.measuredMass = 105.658 | |
TeslaReportAlgo DEBUG 10#Particle.momCov00 = 146.056 | |
TeslaReportAlgo DEBUG 11#Particle.momCov11 = 12.1171 | |
TeslaReportAlgo DEBUG 12#Particle.momCov22 = 6308.28 | |
TeslaReportAlgo DEBUG 13#Particle.momCov33 = 6452.06 | |
TeslaReportAlgo DEBUG 14#Particle.momCov10 = 21.0765 | |
TeslaReportAlgo DEBUG 15#Particle.momCov20 = -941.35 | |
TeslaReportAlgo DEBUG 16#Particle.momCov21 = -145.502 | |
TeslaReportAlgo DEBUG 17#Particle.momCov30 = -952.814 | |
TeslaReportAlgo DEBUG 18#Particle.momCov31 = -147.254 | |
TeslaReportAlgo DEBUG 19#Particle.momCov32 = 6379.7 | |
TeslaReportAlgo DEBUG 2#Particle.referencePoint.z = 62.7537 | |
TeslaReportAlgo DEBUG 20#Particle.posmomCov00 = -0.0250704 | |
TeslaReportAlgo DEBUG 21#Particle.posmomCov11 = -0.0464191 | |
TeslaReportAlgo DEBUG 22#Particle.posmomCov22 = 0 | |
TeslaReportAlgo DEBUG 23#Particle.posmomCov10 = 0.00430902 | |
TeslaReportAlgo DEBUG 24#Particle.posmomCov01 = 0.00361383 | |
TeslaReportAlgo DEBUG 25#Particle.posmomCov20 = 0.0234003 | |
TeslaReportAlgo DEBUG 26#Particle.posmomCov02 = 0 | |
TeslaReportAlgo DEBUG 27#Particle.posmomCov21 = 0.0100678 | |
TeslaReportAlgo DEBUG 28#Particle.posmomCov12 = 0 | |
TeslaReportAlgo DEBUG 29#Particle.posmomCov30 = 0.0267259 | |
TeslaReportAlgo DEBUG 3#Particle.referencePoint.x = -0.000440932 | |
TeslaReportAlgo DEBUG 30#Particle.posmomCov31 = 0.0104722 | |
TeslaReportAlgo DEBUG 31#Particle.posmomCov32 = 0 | |
TeslaReportAlgo DEBUG 32#Particle.posCov00 = 9.96952e-05 | |
TeslaReportAlgo DEBUG 33#Particle.posCov11 = 0.000304757 | |
TeslaReportAlgo DEBUG 34#Particle.posCov22 = 0 | |
TeslaReportAlgo DEBUG 35#Particle.posCov10 = -4.06733e-05 | |
TeslaReportAlgo DEBUG 36#Particle.posCov20 = 0 | |
TeslaReportAlgo DEBUG 37#Particle.posCov21 = 0 | |
TeslaReportAlgo DEBUG 4#Particle.referencePoint.y = -0.0172394 | |
TeslaReportAlgo DEBUG 5#Particle.slopes.x = -0.148562 | |
TeslaReportAlgo DEBUG 6#Particle.slopes.y = -0.0228144 | |
TeslaReportAlgo DEBUG 7#Particle.1/p = 4.87586e-05 | |
TeslaReportAlgo DEBUG 8#Particle.conflevel = 0.250063 | |
TeslaReportAlgo DEBUG 9#Particle.massErr = 0 | |
TeslaReportAlgo DEBUG p = 20509.2 | |
TeslaReportAlgo DEBUG p (par_mom) = 20509.2 | |
TeslaReportAlgo DEBUG pT (par_mom) = 3048.36 | |
TeslaReportAlgo DEBUG Particle measured mass = 105.658 | |
TeslaReportAlgo DEBUG Particle CL = 0.250063 | |
TeslaReportAlgo DEBUG Available information (track) | |
TeslaReportAlgo DEBUG 0#Track.firstState.z = 62.7537 | |
TeslaReportAlgo DEBUG 1#Track.firstState.x = -0.000440932 | |
TeslaReportAlgo DEBUG 10#Track.flags = 2.19556e+06 | |
TeslaReportAlgo DEBUG 11#Track.lastState.z = 11900 | |
TeslaReportAlgo DEBUG 12#Track.lastState.x = -1347.05 | |
TeslaReportAlgo DEBUG 13#Track.lastState.y = -268.323 | |
TeslaReportAlgo DEBUG 14#Track.lastState.tx = -0.0858661 | |
TeslaReportAlgo DEBUG 15#Track.lastState.ty = -0.0224948 | |
TeslaReportAlgo DEBUG 16#Track.lastState.qOverP = -4.88814e-05 | |
TeslaReportAlgo DEBUG 2#Track.firstState.y = -0.0172394 | |
TeslaReportAlgo DEBUG 3#Track.firstState.tx = -0.148562 | |
TeslaReportAlgo DEBUG 4#Track.firstState.ty = -0.0228144 | |
TeslaReportAlgo DEBUG 5#Track.firstState.qOverP = -4.87586e-05 | |
TeslaReportAlgo DEBUG 6#Track.chi2PerDoF = 0.361741 | |
TeslaReportAlgo DEBUG 7#Track.nDoF = 32 | |
TeslaReportAlgo DEBUG 8#Track.Likelihood = 999 | |
TeslaReportAlgo DEBUG 9#Track.GhostProb = 999 | |
TeslaReportAlgo DEBUG MatchVeloMuon = 1 | |
TeslaReportAlgo DEBUG PatForwardTool/LooseForward = 1 | |
TeslaReportAlgo DEBUG Track #chi^{2}/DoF = 0.361741 | |
TeslaReportAlgo DEBUG Track extra for Rep v2, adding last state | |
TeslaReportAlgo DEBUG Track details added | |
TeslaReportAlgo DEBUG Available information (proto) | |
TeslaReportAlgo DEBUG 0#Proto.extraInfo.IsPhoton = -1000 | |
TeslaReportAlgo DEBUG Proto isPhoton = -1000 | |
TeslaReportAlgo DEBUG ProtoParticle details added | |
TeslaReportAlgo DEBUG Available information (muon) | |
TeslaReportAlgo DEBUG 0#Muon.MuonLLMu = -0.773273 | |
TeslaReportAlgo DEBUG 1#Muon.MuonLLBg = -4.86861 | |
TeslaReportAlgo DEBUG 2#Muon.NShared = 0 | |
TeslaReportAlgo DEBUG 3#Muon.Status = 31 | |
TeslaReportAlgo DEBUG 4#Muon.IsMuon = 1 | |
TeslaReportAlgo DEBUG 5#Muon.IsMuonLoose = 1 | |
TeslaReportAlgo DEBUG 6#Muon.IsMuonTight = 1 | |
TeslaReportAlgo DEBUG Muon LLMu = -0.773273 | |
TeslaReportAlgo DEBUG MuonPID details added | |
TeslaReportAlgo DEBUG Available information (track) | |
TeslaReportAlgo DEBUG 0#Track.firstState.z = 9450 | |
TeslaReportAlgo DEBUG 1#Track.firstState.x = -1135.93 | |
TeslaReportAlgo DEBUG 10#Track.flags = 167 | |
TeslaReportAlgo DEBUG 11#Track.lastState.z = 9450 | |
TeslaReportAlgo DEBUG 12#Track.lastState.x = -1135.93 | |
TeslaReportAlgo DEBUG 13#Track.lastState.y = -213.183 | |
TeslaReportAlgo DEBUG 14#Track.lastState.tx = -0.0868297 | |
TeslaReportAlgo DEBUG 15#Track.lastState.ty = -0.0225253 | |
TeslaReportAlgo DEBUG 16#Track.lastState.qOverP = -4.88529e-05 | |
TeslaReportAlgo DEBUG 2#Track.firstState.y = -213.183 | |
TeslaReportAlgo DEBUG 3#Track.firstState.tx = -0.0868297 | |
TeslaReportAlgo DEBUG 4#Track.firstState.ty = -0.0225253 | |
TeslaReportAlgo DEBUG 5#Track.firstState.qOverP = -4.88529e-05 | |
TeslaReportAlgo DEBUG 6#Track.chi2PerDoF = 0 | |
TeslaReportAlgo DEBUG 7#Track.nDoF = 0 | |
TeslaReportAlgo DEBUG 8#Track.Likelihood = 999 | |
TeslaReportAlgo DEBUG 9#Track.GhostProb = 999 | |
TeslaReportAlgo DEBUG Track #chi^{2}/DoF = 0 | |
TeslaReportAlgo DEBUG Track extra for Rep v2, adding last state | |
TeslaReportAlgo DEBUG Track details added | |
TeslaReportAlgo DEBUG Starting to tie pieces together | |
TeslaReportAlgo DEBUG Pieces tied together | |
TeslaReportAlgo DEBUG Daughter level 1 CLASS ID = 802 | |
TeslaReportAlgo DEBUG Available information (vertex) | |
TeslaReportAlgo DEBUG 0#Vertex.chi2 = 1.1735 | |
TeslaReportAlgo DEBUG 1#Vertex.ndf = 1 | |
TeslaReportAlgo DEBUG 10#Vertex.cov20 = -0.00319967 | |
TeslaReportAlgo DEBUG 11#Vertex.cov21 = -0.00157045 | |
TeslaReportAlgo DEBUG 2#Vertex.position.x = -0.0402271 | |
TeslaReportAlgo DEBUG 3#Vertex.position.y = -0.0102745 | |
TeslaReportAlgo DEBUG 4#Vertex.position.z = 63.027 | |
TeslaReportAlgo DEBUG 5#Vertex.technique = 0 | |
TeslaReportAlgo DEBUG 6#Vertex.cov00 = 0.000442808 | |
TeslaReportAlgo DEBUG 7#Vertex.cov11 = 0.000212432 | |
TeslaReportAlgo DEBUG 8#Vertex.cov22 = 0.0274779 | |
TeslaReportAlgo DEBUG 9#Vertex.cov10 = 0.000163594 | |
TeslaReportAlgo DEBUG Decay vertex chi2 = 1.1735 | |
TeslaReportAlgo DEBUG Setting mother decay vertex | |
TeslaReportAlgo DEBUG Starting loop over triggered candidates | |
TeslaReportAlgo DEBUG Mother object CLASS ID = 801 | |
TeslaReportAlgo DEBUG Found mother with ID: 443 | |
TeslaReportAlgo DEBUG Mother has substructure consisting of: | |
TeslaReportAlgo DEBUG 801 | |
TeslaReportAlgo DEBUG 801 | |
TeslaReportAlgo DEBUG 802 | |
TeslaReportAlgo DEBUG Available information | |
TeslaReportAlgo DEBUG 0#Particle.particleID.pid = 443 | |
TeslaReportAlgo DEBUG 1#Particle.measuredMass = 3046.21 | |
TeslaReportAlgo DEBUG 10#Particle.momCov00 = 155.652 | |
TeslaReportAlgo DEBUG 11#Particle.momCov11 = 16.8247 | |
TeslaReportAlgo DEBUG 12#Particle.momCov22 = 7004.76 | |
TeslaReportAlgo DEBUG 13#Particle.momCov33 = 7154.36 | |
TeslaReportAlgo DEBUG 14#Particle.momCov10 = 19.78 | |
TeslaReportAlgo DEBUG 15#Particle.momCov20 = -878.909 | |
TeslaReportAlgo DEBUG 16#Particle.momCov21 = -159.982 | |
TeslaReportAlgo DEBUG 17#Particle.momCov30 = -889.752 | |
TeslaReportAlgo DEBUG 18#Particle.momCov31 = -161.88 | |
TeslaReportAlgo DEBUG 19#Particle.momCov32 = 7079.07 | |
TeslaReportAlgo DEBUG 2#Particle.referencePoint.z = 62.8166 | |
TeslaReportAlgo DEBUG 20#Particle.posmomCov00 = -0.0364866 | |
TeslaReportAlgo DEBUG 21#Particle.posmomCov11 = -0.0482961 | |
TeslaReportAlgo DEBUG 22#Particle.posmomCov22 = 0.078581 | |
TeslaReportAlgo DEBUG 23#Particle.posmomCov10 = 0.00159214 | |
TeslaReportAlgo DEBUG 24#Particle.posmomCov01 = 0.000829263 | |
TeslaReportAlgo DEBUG 25#Particle.posmomCov20 = 0.012172 | |
TeslaReportAlgo DEBUG 26#Particle.posmomCov02 = 0.0778964 | |
TeslaReportAlgo DEBUG 27#Particle.posmomCov21 = 0.00490192 | |
TeslaReportAlgo DEBUG 28#Particle.posmomCov12 = 0.0196123 | |
TeslaReportAlgo DEBUG 29#Particle.posmomCov30 = 0.0109752 | |
TeslaReportAlgo DEBUG 3#Particle.referencePoint.x = -0.00939637 | |
TeslaReportAlgo DEBUG 30#Particle.posmomCov31 = 0.00485293 | |
TeslaReportAlgo DEBUG 31#Particle.posmomCov32 = 0.108788 | |
TeslaReportAlgo DEBUG 32#Particle.posCov00 = 0.000213919 | |
TeslaReportAlgo DEBUG 33#Particle.posCov11 = 0.000217581 | |
TeslaReportAlgo DEBUG 34#Particle.posCov22 = 0.0107486 | |
TeslaReportAlgo DEBUG 35#Particle.posCov10 = 1.49609e-05 | |
TeslaReportAlgo DEBUG 36#Particle.posCov20 = -0.00118937 | |
TeslaReportAlgo DEBUG 37#Particle.posCov21 = -0.00034777 | |
TeslaReportAlgo DEBUG 4#Particle.referencePoint.y = -0.0215208 | |
TeslaReportAlgo DEBUG 5#Particle.slopes.x = -0.081143 | |
TeslaReportAlgo DEBUG 6#Particle.slopes.y = -0.0222226 | |
TeslaReportAlgo DEBUG 7#Particle.1/p = 3.52699e-05 | |
TeslaReportAlgo DEBUG 8#Particle.conflevel = -1 | |
TeslaReportAlgo DEBUG 9#Particle.massErr = 8.53111 | |
TeslaReportAlgo DEBUG p = 28352.8 | |
TeslaReportAlgo DEBUG p (par_mom) = 28352.8 | |
TeslaReportAlgo DEBUG pT (par_mom) = 2376.95 | |
TeslaReportAlgo DEBUG Particle measured mass = 3046.21 | |
TeslaReportAlgo DEBUG Particle CL = -1 | |
TeslaReportAlgo DEBUG Daughter level 1 CLASS ID = 801 | |
TeslaReportAlgo DEBUG 1st Gen. Daughter ID: -13 | |
TeslaReportAlgo DEBUG Basic daughter level 1 has substructure consisting of: | |
TeslaReportAlgo DEBUG 10010 | |
TeslaReportAlgo DEBUG 803 | |
TeslaReportAlgo DEBUG 11050 | |
TeslaReportAlgo DEBUG 10010 | |
TeslaReportAlgo DEBUG Available information | |
TeslaReportAlgo DEBUG 0#Particle.particleID.pid = -13 | |
TeslaReportAlgo DEBUG 1#Particle.measuredMass = 105.658 | |
TeslaReportAlgo DEBUG 10#Particle.momCov00 = 9.60616 | |
TeslaReportAlgo DEBUG 11#Particle.momCov11 = 4.72946 | |
TeslaReportAlgo DEBUG 12#Particle.momCov22 = 696.593 | |
TeslaReportAlgo DEBUG 13#Particle.momCov33 = 702.407 | |
TeslaReportAlgo DEBUG 14#Particle.momCov10 = -1.2814 | |
TeslaReportAlgo DEBUG 15#Particle.momCov20 = 62.4762 | |
TeslaReportAlgo DEBUG 16#Particle.momCov21 = -14.4293 | |
TeslaReportAlgo DEBUG 17#Particle.momCov30 = 63.0948 | |
TeslaReportAlgo DEBUG 18#Particle.momCov31 = -14.5793 | |
TeslaReportAlgo DEBUG 19#Particle.momCov32 = 699.477 | |
TeslaReportAlgo DEBUG 2#Particle.referencePoint.z = 63.2459 | |
TeslaReportAlgo DEBUG 20#Particle.posmomCov00 = -0.0432842 | |
TeslaReportAlgo DEBUG 21#Particle.posmomCov11 = -0.0507629 | |
TeslaReportAlgo DEBUG 22#Particle.posmomCov22 = 0 | |
TeslaReportAlgo DEBUG 23#Particle.posmomCov10 = -0.00013578 | |
TeslaReportAlgo DEBUG 24#Particle.posmomCov01 = 0.000294296 | |
TeslaReportAlgo DEBUG 25#Particle.posmomCov20 = 0.0051437 | |
TeslaReportAlgo DEBUG 26#Particle.posmomCov02 = 0 | |
TeslaReportAlgo DEBUG 27#Particle.posmomCov21 = -0.00066454 | |
TeslaReportAlgo DEBUG 28#Particle.posmomCov12 = 0 | |
TeslaReportAlgo DEBUG 29#Particle.posmomCov30 = 0.00122879 | |
TeslaReportAlgo DEBUG 3#Particle.referencePoint.x = 0.0294873 | |
TeslaReportAlgo DEBUG 30#Particle.posmomCov31 = 0.000411616 | |
TeslaReportAlgo DEBUG 31#Particle.posmomCov32 = 0 | |
TeslaReportAlgo DEBUG 32#Particle.posCov00 = 0.000512105 | |
TeslaReportAlgo DEBUG 33#Particle.posCov11 = 0.00064553 | |
TeslaReportAlgo DEBUG 34#Particle.posCov22 = 0 | |
TeslaReportAlgo DEBUG 35#Particle.posCov10 = -4.54644e-06 | |
TeslaReportAlgo DEBUG 36#Particle.posCov20 = 0 | |
TeslaReportAlgo DEBUG 37#Particle.posCov21 = 0 | |
TeslaReportAlgo DEBUG 4#Particle.referencePoint.y = -0.0364907 | |
TeslaReportAlgo DEBUG 5#Particle.slopes.x = 0.0903873 | |
TeslaReportAlgo DEBUG 6#Particle.slopes.y = -0.0207112 | |
TeslaReportAlgo DEBUG 7#Particle.1/p = 0.000124909 | |
TeslaReportAlgo DEBUG 8#Particle.conflevel = 0.250063 | |
TeslaReportAlgo DEBUG 9#Particle.massErr = 0 | |
TeslaReportAlgo DEBUG p = 8005.85 | |
TeslaReportAlgo DEBUG p (par_mom) = 8005.85 | |
TeslaReportAlgo DEBUG pT (par_mom) = 739.21 | |
TeslaReportAlgo DEBUG Particle measured mass = 105.658 | |
TeslaReportAlgo DEBUG Particle CL = 0.250063 | |
TeslaReportAlgo DEBUG Available information (track) | |
TeslaReportAlgo DEBUG 0#Track.firstState.z = 63.2459 | |
TeslaReportAlgo DEBUG 1#Track.firstState.x = 0.0294873 | |
TeslaReportAlgo DEBUG 10#Track.flags = 98403 | |
TeslaReportAlgo DEBUG 11#Track.lastState.z = 11900 | |
TeslaReportAlgo DEBUG 12#Track.lastState.x = 37.9036 | |
TeslaReportAlgo DEBUG 13#Track.lastState.y = -244.362 | |
TeslaReportAlgo DEBUG 14#Track.lastState.tx = -0.0684694 | |
TeslaReportAlgo DEBUG 15#Track.lastState.ty = -0.0203531 | |
TeslaReportAlgo DEBUG 16#Track.lastState.qOverP = 0.000125607 | |
TeslaReportAlgo DEBUG 2#Track.firstState.y = -0.0364907 | |
TeslaReportAlgo DEBUG 3#Track.firstState.tx = 0.0903873 | |
TeslaReportAlgo DEBUG 4#Track.firstState.ty = -0.0207112 | |
TeslaReportAlgo DEBUG 5#Track.firstState.qOverP = 0.000124909 | |
TeslaReportAlgo DEBUG 6#Track.chi2PerDoF = 1.1998 | |
TeslaReportAlgo DEBUG 7#Track.nDoF = 27 | |
TeslaReportAlgo DEBUG 8#Track.Likelihood = 999 | |
TeslaReportAlgo DEBUG 9#Track.GhostProb = 999 | |
TeslaReportAlgo DEBUG MatchVeloMuon = 0 | |
TeslaReportAlgo DEBUG Track #chi^{2}/DoF = 1.1998 | |
TeslaReportAlgo DEBUG Track extra for Rep v2, adding last state | |
TeslaReportAlgo DEBUG Track details added | |
TeslaReportAlgo DEBUG Available information (proto) | |
TeslaReportAlgo DEBUG 0#Proto.extraInfo.IsPhoton = -1000 | |
TeslaReportAlgo DEBUG Proto isPhoton = -1000 | |
TeslaReportAlgo DEBUG ProtoParticle details added | |
TeslaReportAlgo DEBUG Available information (muon) | |
TeslaReportAlgo DEBUG 0#Muon.MuonLLMu = -0.413245 | |
TeslaReportAlgo DEBUG 1#Muon.MuonLLBg = -0.39724 | |
TeslaReportAlgo DEBUG 2#Muon.NShared = 0 | |
TeslaReportAlgo DEBUG 3#Muon.Status = 31 | |
TeslaReportAlgo DEBUG 4#Muon.IsMuon = 1 | |
TeslaReportAlgo DEBUG 5#Muon.IsMuonLoose = 1 | |
TeslaReportAlgo DEBUG 6#Muon.IsMuonTight = 1 | |
TeslaReportAlgo DEBUG Muon LLMu = -0.413245 | |
TeslaReportAlgo DEBUG MuonPID details added | |
TeslaReportAlgo DEBUG Available information (track) | |
TeslaReportAlgo DEBUG 0#Track.firstState.z = 9450 | |
TeslaReportAlgo DEBUG 1#Track.firstState.x = 203.501 | |
TeslaReportAlgo DEBUG 10#Track.flags = 167 | |
TeslaReportAlgo DEBUG 11#Track.lastState.z = 9450 | |
TeslaReportAlgo DEBUG 12#Track.lastState.x = 203.501 | |
TeslaReportAlgo DEBUG 13#Track.lastState.y = -194.474 | |
TeslaReportAlgo DEBUG 14#Track.lastState.tx = -0.0657568 | |
TeslaReportAlgo DEBUG 15#Track.lastState.ty = -0.0203798 | |
TeslaReportAlgo DEBUG 16#Track.lastState.qOverP = 0.000125436 | |
TeslaReportAlgo DEBUG 2#Track.firstState.y = -194.474 | |
TeslaReportAlgo DEBUG 3#Track.firstState.tx = -0.0657568 | |
TeslaReportAlgo DEBUG 4#Track.firstState.ty = -0.0203798 | |
TeslaReportAlgo DEBUG 5#Track.firstState.qOverP = 0.000125436 | |
TeslaReportAlgo DEBUG 6#Track.chi2PerDoF = 0 | |
TeslaReportAlgo DEBUG 7#Track.nDoF = 0 | |
TeslaReportAlgo DEBUG 8#Track.Likelihood = 999 | |
TeslaReportAlgo DEBUG 9#Track.GhostProb = 999 | |
TeslaReportAlgo DEBUG Track #chi^{2}/DoF = 0 | |
TeslaReportAlgo DEBUG Track extra for Rep v2, adding last state | |
TeslaReportAlgo DEBUG Track details added | |
TeslaReportAlgo DEBUG Starting to tie pieces together | |
TeslaReportAlgo DEBUG Pieces tied together | |
TeslaReportAlgo DEBUG Daughter level 1 CLASS ID = 801 | |
TeslaReportAlgo DEBUG 1st Gen. Daughter ID: 13 | |
TeslaReportAlgo DEBUG Basic daughter level 1 has substructure consisting of: | |
TeslaReportAlgo DEBUG 10010 | |
TeslaReportAlgo DEBUG 803 | |
TeslaReportAlgo DEBUG 11050 | |
TeslaReportAlgo DEBUG 10010 | |
TeslaReportAlgo DEBUG Available information | |
TeslaReportAlgo DEBUG 0#Particle.particleID.pid = 13 | |
TeslaReportAlgo DEBUG 1#Particle.measuredMass = 105.658 | |
TeslaReportAlgo DEBUG 10#Particle.momCov00 = 146.056 | |
TeslaReportAlgo DEBUG 11#Particle.momCov11 = 12.1171 | |
TeslaReportAlgo DEBUG 12#Particle.momCov22 = 6308.28 | |
TeslaReportAlgo DEBUG 13#Particle.momCov33 = 6452.06 | |
TeslaReportAlgo DEBUG 14#Particle.momCov10 = 21.0765 | |
TeslaReportAlgo DEBUG 15#Particle.momCov20 = -941.35 | |
TeslaReportAlgo DEBUG 16#Particle.momCov21 = -145.502 | |
TeslaReportAlgo DEBUG 17#Particle.momCov30 = -952.814 | |
TeslaReportAlgo DEBUG 18#Particle.momCov31 = -147.254 | |
TeslaReportAlgo DEBUG 19#Particle.momCov32 = 6379.7 | |
TeslaReportAlgo DEBUG 2#Particle.referencePoint.z = 62.7537 | |
TeslaReportAlgo DEBUG 20#Particle.posmomCov00 = -0.0250704 | |
TeslaReportAlgo DEBUG 21#Particle.posmomCov11 = -0.0464191 | |
TeslaReportAlgo DEBUG 22#Particle.posmomCov22 = 0 | |
TeslaReportAlgo DEBUG 23#Particle.posmomCov10 = 0.00430902 | |
TeslaReportAlgo DEBUG 24#Particle.posmomCov01 = 0.00361383 | |
TeslaReportAlgo DEBUG 25#Particle.posmomCov20 = 0.0234003 | |
TeslaReportAlgo DEBUG 26#Particle.posmomCov02 = 0 | |
TeslaReportAlgo DEBUG 27#Particle.posmomCov21 = 0.0100678 | |
TeslaReportAlgo DEBUG 28#Particle.posmomCov12 = 0 | |
TeslaReportAlgo DEBUG 29#Particle.posmomCov30 = 0.0267259 | |
TeslaReportAlgo DEBUG 3#Particle.referencePoint.x = -0.000440932 | |
TeslaReportAlgo DEBUG 30#Particle.posmomCov31 = 0.0104722 | |
TeslaReportAlgo DEBUG 31#Particle.posmomCov32 = 0 | |
TeslaReportAlgo DEBUG 32#Particle.posCov00 = 9.96952e-05 | |
TeslaReportAlgo DEBUG 33#Particle.posCov11 = 0.000304757 | |
TeslaReportAlgo DEBUG 34#Particle.posCov22 = 0 | |
TeslaReportAlgo DEBUG 35#Particle.posCov10 = -4.06733e-05 | |
TeslaReportAlgo DEBUG 36#Particle.posCov20 = 0 | |
TeslaReportAlgo DEBUG 37#Particle.posCov21 = 0 | |
TeslaReportAlgo DEBUG 4#Particle.referencePoint.y = -0.0172394 | |
TeslaReportAlgo DEBUG 5#Particle.slopes.x = -0.148562 | |
TeslaReportAlgo DEBUG 6#Particle.slopes.y = -0.0228144 | |
TeslaReportAlgo DEBUG 7#Particle.1/p = 4.87586e-05 | |
TeslaReportAlgo DEBUG 8#Particle.conflevel = 0.250063 | |
TeslaReportAlgo DEBUG 9#Particle.massErr = 0 | |
TeslaReportAlgo DEBUG p = 20509.2 | |
TeslaReportAlgo DEBUG p (par_mom) = 20509.2 | |
TeslaReportAlgo DEBUG pT (par_mom) = 3048.36 | |
TeslaReportAlgo DEBUG Particle measured mass = 105.658 | |
TeslaReportAlgo DEBUG Particle CL = 0.250063 | |
TeslaReportAlgo DEBUG Available information (track) | |
TeslaReportAlgo DEBUG 0#Track.firstState.z = 62.7537 | |
TeslaReportAlgo DEBUG 1#Track.firstState.x = -0.000440932 | |
TeslaReportAlgo DEBUG 10#Track.flags = 2.19556e+06 | |
TeslaReportAlgo DEBUG 11#Track.lastState.z = 11900 | |
TeslaReportAlgo DEBUG 12#Track.lastState.x = -1347.05 | |
TeslaReportAlgo DEBUG 13#Track.lastState.y = -268.323 | |
TeslaReportAlgo DEBUG 14#Track.lastState.tx = -0.0858661 | |
TeslaReportAlgo DEBUG 15#Track.lastState.ty = -0.0224948 | |
TeslaReportAlgo DEBUG 16#Track.lastState.qOverP = -4.88814e-05 | |
TeslaReportAlgo DEBUG 2#Track.firstState.y = -0.0172394 | |
TeslaReportAlgo DEBUG 3#Track.firstState.tx = -0.148562 | |
TeslaReportAlgo DEBUG 4#Track.firstState.ty = -0.0228144 | |
TeslaReportAlgo DEBUG 5#Track.firstState.qOverP = -4.87586e-05 | |
TeslaReportAlgo DEBUG 6#Track.chi2PerDoF = 0.361741 | |
TeslaReportAlgo DEBUG 7#Track.nDoF = 32 | |
TeslaReportAlgo DEBUG 8#Track.Likelihood = 999 | |
TeslaReportAlgo DEBUG 9#Track.GhostProb = 999 | |
TeslaReportAlgo DEBUG MatchVeloMuon = 1 | |
TeslaReportAlgo DEBUG PatForwardTool/LooseForward = 1 | |
TeslaReportAlgo DEBUG Track #chi^{2}/DoF = 0.361741 | |
TeslaReportAlgo DEBUG Track extra for Rep v2, adding last state | |
TeslaReportAlgo DEBUG Track details added | |
TeslaReportAlgo DEBUG Available information (proto) | |
TeslaReportAlgo DEBUG 0#Proto.extraInfo.IsPhoton = -1000 | |
TeslaReportAlgo DEBUG Proto isPhoton = -1000 | |
TeslaReportAlgo DEBUG ProtoParticle details added | |
TeslaReportAlgo DEBUG Available information (muon) | |
TeslaReportAlgo DEBUG 0#Muon.MuonLLMu = -0.773273 | |
TeslaReportAlgo DEBUG 1#Muon.MuonLLBg = -4.86861 | |
TeslaReportAlgo DEBUG 2#Muon.NShared = 0 | |
TeslaReportAlgo DEBUG 3#Muon.Status = 31 | |
TeslaReportAlgo DEBUG 4#Muon.IsMuon = 1 | |
TeslaReportAlgo DEBUG 5#Muon.IsMuonLoose = 1 | |
TeslaReportAlgo DEBUG 6#Muon.IsMuonTight = 1 | |
TeslaReportAlgo DEBUG Muon LLMu = -0.773273 | |
TeslaReportAlgo DEBUG MuonPID details added | |
TeslaReportAlgo DEBUG Available information (track) | |
TeslaReportAlgo DEBUG 0#Track.firstState.z = 9450 | |
TeslaReportAlgo DEBUG 1#Track.firstState.x = -1135.93 | |
TeslaReportAlgo DEBUG 10#Track.flags = 167 | |
TeslaReportAlgo DEBUG 11#Track.lastState.z = 9450 | |
TeslaReportAlgo DEBUG 12#Track.lastState.x = -1135.93 | |
TeslaReportAlgo DEBUG 13#Track.lastState.y = -213.183 | |
TeslaReportAlgo DEBUG 14#Track.lastState.tx = -0.0868297 | |
TeslaReportAlgo DEBUG 15#Track.lastState.ty = -0.0225253 | |
TeslaReportAlgo DEBUG 16#Track.lastState.qOverP = -4.88529e-05 | |
TeslaReportAlgo DEBUG 2#Track.firstState.y = -213.183 | |
TeslaReportAlgo DEBUG 3#Track.firstState.tx = -0.0868297 | |
TeslaReportAlgo DEBUG 4#Track.firstState.ty = -0.0225253 | |
TeslaReportAlgo DEBUG 5#Track.firstState.qOverP = -4.88529e-05 | |
TeslaReportAlgo DEBUG 6#Track.chi2PerDoF = 0 | |
TeslaReportAlgo DEBUG 7#Track.nDoF = 0 | |
TeslaReportAlgo DEBUG 8#Track.Likelihood = 999 | |
TeslaReportAlgo DEBUG 9#Track.GhostProb = 999 | |
TeslaReportAlgo DEBUG Track #chi^{2}/DoF = 0 | |
TeslaReportAlgo DEBUG Track extra for Rep v2, adding last state | |
TeslaReportAlgo DEBUG Track details added | |
TeslaReportAlgo DEBUG Starting to tie pieces together | |
TeslaReportAlgo DEBUG Pieces tied together | |
TeslaReportAlgo DEBUG Daughter level 1 CLASS ID = 802 | |
TeslaReportAlgo DEBUG Available information (vertex) | |
TeslaReportAlgo DEBUG 0#Vertex.chi2 = 0.0833947 | |
TeslaReportAlgo DEBUG 1#Vertex.ndf = 1 | |
TeslaReportAlgo DEBUG 10#Vertex.cov20 = -0.00118937 | |
TeslaReportAlgo DEBUG 11#Vertex.cov21 = -0.00034777 | |
TeslaReportAlgo DEBUG 2#Vertex.position.x = -0.00939637 | |
TeslaReportAlgo DEBUG 3#Vertex.position.y = -0.0215208 | |
TeslaReportAlgo DEBUG 4#Vertex.position.z = 62.8166 | |
TeslaReportAlgo DEBUG 5#Vertex.technique = 0 | |
TeslaReportAlgo DEBUG 6#Vertex.cov00 = 0.000213919 | |
TeslaReportAlgo DEBUG 7#Vertex.cov11 = 0.000217581 | |
TeslaReportAlgo DEBUG 8#Vertex.cov22 = 0.0107486 | |
TeslaReportAlgo DEBUG 9#Vertex.cov10 = 1.49609e-05 | |
TeslaReportAlgo DEBUG Decay vertex chi2 = 0.0833947 | |
TeslaReportAlgo DEBUG Setting mother decay vertex | |
TeslaReportAlgo DEBUG End of algorithm execution | |
TeslaReportAlgo DEBUG ==> Execute | |
TeslaReportAlgo... DEBUG SelReports version check requested | |
TeslaReportAlgo... DEBUG The object of type 'LHCb::HltSelReports*' has been retrieved from TS at address 'Hlt2/SelReports' | |
TeslaReportAlgo DEBUG VersionNum = 99 | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Particle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Particles' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::ProtoParticle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Protos' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Vertex,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Vertices' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Track,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Tracks' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::RichPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/RichPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::MuonPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/MuonPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::VertexBase,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Rec/Vertex/Primary' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'LHCb::Relation1D<LHCb::Particle,LHCb::VertexBase>' is registered in TS at address 'Tesla/Particle2VertexRelations' | |
TeslaReportAlgo DEBUG The object of type 'LHCb::HltVertexReports*' has been retrieved from TS at address 'Hlt1/VertexReports' | |
TeslaReportAlgo DEBUG Available vertex reports: | |
TeslaReportAlgo DEBUG PV3D | |
TeslaReportAlgo DEBUG ProtoPV3D | |
TeslaReportAlgo DEBUG Vertex chi2= 77.2799, ndf =89 | |
TeslaReportAlgo DEBUG Vertex key= 0 | |
TeslaReportAlgo DEBUG The object of type 'LHCb::HltSelReports*' has been retrieved from TS at address 'Hlt2/SelReports' | |
TeslaReportAlgo DEBUG Available reports: | |
TeslaReportAlgo DEBUG Hlt2Global | |
TeslaReportAlgo DEBUG Hlt2SingleMuonLowPTDecision | |
TeslaReportAlgo DEBUG End of algorithm execution | |
TeslaReportAlgo DEBUG ==> Execute | |
TeslaReportAlgo... DEBUG SelReports version check requested | |
Hlt2SelReportsD...WARNING HltSelReportsDecoder:: No appropriate HltSelReports RawBank in RawEvent. Quiting. | |
TeslaReportAlgo...WARNING Sel. reports do not exist!!! | |
TeslaReportAlgo DEBUG VersionNum = 0 | |
TeslaReportAlgo WARNING Requested version number does not equal checker response | |
TeslaReportAlgo DEBUG versionNum = 0, m_ReportVersion = 2 | |
TeslaReportAlgo WARNING For your own safety, I will give you less information than requested, please check report generation | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Particle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Particles' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::ProtoParticle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Protos' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Vertex,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Vertices' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Track,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Tracks' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::RichPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/RichPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::MuonPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/MuonPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::VertexBase,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Rec/Vertex/Primary' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'LHCb::Relation1D<LHCb::Particle,LHCb::VertexBase>' is registered in TS at address 'Tesla/Particle2VertexRelations' | |
Hlt1VertexRepor...WARNING HltVertexReportsDecoder:: No HltVertexReports RawBank for requested SourceID in RawEvent. Quiting. | |
TeslaReportAlgo DEBUG The object of type 'LHCb::HltVertexReports*' has been retrieved from TS at address 'Hlt1/VertexReports' | |
TeslaReportAlgo DEBUG Available vertex reports: | |
Hlt2SelReportsD...WARNING HltSelReportsDecoder:: No appropriate HltSelReports RawBank in RawEvent. Quiting. | |
TeslaReportAlgo WARNING Sel. reports do not exist!!! | |
TeslaReportAlgo DEBUG ==> Execute | |
TeslaReportAlgo... DEBUG SelReports version check requested | |
Hlt2SelReportsD...WARNING HltSelReportsDecoder:: No appropriate HltSelReports RawBank in RawEvent. Quiting. | |
TeslaReportAlgo...WARNING Sel. reports do not exist!!! | |
TeslaReportAlgo DEBUG VersionNum = 0 | |
TeslaReportAlgo WARNING Requested version number does not equal checker response | |
TeslaReportAlgo DEBUG versionNum = 0, m_ReportVersion = 2 | |
TeslaReportAlgo WARNING For your own safety, I will give you less information than requested, please check report generation | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Particle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Particles' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::ProtoParticle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Protos' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Vertex,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Vertices' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Track,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Tracks' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::RichPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/RichPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::MuonPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/MuonPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::VertexBase,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Rec/Vertex/Primary' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'LHCb::Relation1D<LHCb::Particle,LHCb::VertexBase>' is registered in TS at address 'Tesla/Particle2VertexRelations' | |
Hlt1VertexRepor...WARNING HltVertexReportsDecoder:: No HltVertexReports RawBank for requested SourceID in RawEvent. Quiting. | |
TeslaReportAlgo DEBUG The object of type 'LHCb::HltVertexReports*' has been retrieved from TS at address 'Hlt1/VertexReports' | |
TeslaReportAlgo DEBUG Available vertex reports: | |
Hlt2SelReportsD...WARNING HltSelReportsDecoder:: No appropriate HltSelReports RawBank in RawEvent. Quiting. | |
TeslaReportAlgo WARNING Sel. reports do not exist!!! | |
TeslaReportAlgo DEBUG ==> Execute | |
TeslaReportAlgo... DEBUG SelReports version check requested | |
TeslaReportAlgo... DEBUG The object of type 'LHCb::HltSelReports*' has been retrieved from TS at address 'Hlt2/SelReports' | |
TeslaReportAlgo... DEBUG Examining mother report | |
TeslaReportAlgo... DEBUG Mother report is of a particle | |
TeslaReportAlgo... DEBUG ReportCheckTool finds verision 2 | |
TeslaReportAlgo DEBUG VersionNum = 2 | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Particle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Particles' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::ProtoParticle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Protos' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Vertex,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Vertices' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Track,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Tracks' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::RichPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/RichPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::MuonPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/MuonPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::VertexBase,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Rec/Vertex/Primary' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'LHCb::Relation1D<LHCb::Particle,LHCb::VertexBase>' is registered in TS at address 'Tesla/Particle2VertexRelations' | |
TeslaReportAlgo DEBUG The object of type 'LHCb::HltVertexReports*' has been retrieved from TS at address 'Hlt1/VertexReports' | |
TeslaReportAlgo DEBUG Available vertex reports: | |
TeslaReportAlgo DEBUG PV3D | |
TeslaReportAlgo DEBUG ProtoPV3D | |
TeslaReportAlgo DEBUG Vertex chi2= 4.3343, ndf =15 | |
TeslaReportAlgo DEBUG Vertex key= 0 | |
TeslaReportAlgo DEBUG The object of type 'LHCb::HltSelReports*' has been retrieved from TS at address 'Hlt2/SelReports' | |
TeslaReportAlgo DEBUG Available reports: | |
TeslaReportAlgo DEBUG Hlt2DiMuonDecision | |
TeslaReportAlgo DEBUG Hlt2DiMuonJPsiDecision | |
TeslaReportAlgo DEBUG Hlt2Global | |
TeslaReportAlgo DEBUG Hlt2SingleMuonLowPTDecision | |
TeslaReportAlgo DEBUG Required line has been fired | |
TeslaReportAlgo DEBUG Reference: | |
TeslaReportAlgo DEBUG Particle class ID = 801 | |
TeslaReportAlgo DEBUG Track class ID = 10010 | |
TeslaReportAlgo DEBUG RecVertex class ID = 10030 | |
TeslaReportAlgo DEBUG Vertex class ID = 802 | |
TeslaReportAlgo DEBUG ProtoParticle class ID = 803 | |
TeslaReportAlgo DEBUG { summarizedObjectCLID : 1 numericalInfo : { 0#SelectionID:50201 , } substructure : { 14:801 , } lhcbIDs : { } } | |
TeslaReportAlgo DEBUG MOTHER CLASS ID = 1 | |
TeslaReportAlgo DEBUG LHCbIDs.size() = 0 | |
TeslaReportAlgo DEBUG Number of triggered candidates = 1 | |
TeslaReportAlgo DEBUG [0xb568600] | |
TeslaReportAlgo DEBUG Starting loop over triggered candidates | |
TeslaReportAlgo DEBUG Mother object CLASS ID = 801 | |
TeslaReportAlgo DEBUG Found mother with ID: 443 | |
TeslaReportAlgo DEBUG Mother has substructure consisting of: | |
TeslaReportAlgo DEBUG 801 | |
TeslaReportAlgo DEBUG 801 | |
TeslaReportAlgo DEBUG 802 | |
TeslaReportAlgo DEBUG Available information | |
TeslaReportAlgo DEBUG 0#Particle.particleID.pid = 443 | |
TeslaReportAlgo DEBUG 1#Particle.measuredMass = 3018.55 | |
TeslaReportAlgo DEBUG 10#Particle.momCov00 = 48.0195 | |
TeslaReportAlgo DEBUG 11#Particle.momCov11 = 17.0317 | |
TeslaReportAlgo DEBUG 12#Particle.momCov22 = 1253.48 | |
TeslaReportAlgo DEBUG 13#Particle.momCov33 = 1303.81 | |
TeslaReportAlgo DEBUG 14#Particle.momCov10 = -10.4587 | |
TeslaReportAlgo DEBUG 15#Particle.momCov20 = -0.0942083 | |
TeslaReportAlgo DEBUG 16#Particle.momCov21 = -86.3215 | |
TeslaReportAlgo DEBUG 17#Particle.momCov30 = -3.57488 | |
TeslaReportAlgo DEBUG 18#Particle.momCov31 = -87.5156 | |
TeslaReportAlgo DEBUG 19#Particle.momCov32 = 1278.14 | |
TeslaReportAlgo DEBUG 2#Particle.referencePoint.z = 30.4354 | |
TeslaReportAlgo DEBUG 20#Particle.posmomCov00 = -0.024428 | |
TeslaReportAlgo DEBUG 21#Particle.posmomCov11 = -0.0360793 | |
TeslaReportAlgo DEBUG 22#Particle.posmomCov22 = -0.023289 | |
TeslaReportAlgo DEBUG 23#Particle.posmomCov10 = -0.00532962 | |
TeslaReportAlgo DEBUG 24#Particle.posmomCov01 = -0.00484594 | |
TeslaReportAlgo DEBUG 25#Particle.posmomCov20 = -0.000208001 | |
TeslaReportAlgo DEBUG 26#Particle.posmomCov02 = 0.00330849 | |
TeslaReportAlgo DEBUG 27#Particle.posmomCov21 = 0.00127802 | |
TeslaReportAlgo DEBUG 28#Particle.posmomCov12 = 0.0246425 | |
TeslaReportAlgo DEBUG 29#Particle.posmomCov30 = 1.87534e-05 | |
TeslaReportAlgo DEBUG 3#Particle.referencePoint.x = 0.00160234 | |
TeslaReportAlgo DEBUG 30#Particle.posmomCov31 = 0.00123832 | |
TeslaReportAlgo DEBUG 31#Particle.posmomCov32 = -0.000903244 | |
TeslaReportAlgo DEBUG 32#Particle.posCov00 = 0.00012564 | |
TeslaReportAlgo DEBUG 33#Particle.posCov11 = 0.000215843 | |
TeslaReportAlgo DEBUG 34#Particle.posCov22 = 0.0026759 | |
TeslaReportAlgo DEBUG 35#Particle.posCov10 = 4.88952e-05 | |
TeslaReportAlgo DEBUG 36#Particle.posCov20 = -0.000161814 | |
TeslaReportAlgo DEBUG 37#Particle.posCov21 = -0.000323975 | |
TeslaReportAlgo DEBUG 4#Particle.referencePoint.y = -0.00120504 | |
TeslaReportAlgo DEBUG 5#Particle.slopes.x = -0.0452262 | |
TeslaReportAlgo DEBUG 6#Particle.slopes.y = -0.0567546 | |
TeslaReportAlgo DEBUG 7#Particle.1/p = 6.77862e-05 | |
TeslaReportAlgo DEBUG 8#Particle.conflevel = -1 | |
TeslaReportAlgo DEBUG 9#Particle.massErr = 7.45396 | |
TeslaReportAlgo DEBUG p = 14752.3 | |
TeslaReportAlgo DEBUG p (par_mom) = 14752.3 | |
TeslaReportAlgo DEBUG pT (par_mom) = 1067.77 | |
TeslaReportAlgo DEBUG Particle measured mass = 3018.55 | |
TeslaReportAlgo DEBUG Particle CL = -1 | |
TeslaReportAlgo DEBUG Daughter level 1 CLASS ID = 801 | |
TeslaReportAlgo DEBUG 1st Gen. Daughter ID: -13 | |
TeslaReportAlgo DEBUG Basic daughter level 1 has substructure consisting of: | |
TeslaReportAlgo DEBUG 10010 | |
TeslaReportAlgo DEBUG 803 | |
TeslaReportAlgo DEBUG 11050 | |
TeslaReportAlgo DEBUG 10010 | |
TeslaReportAlgo DEBUG Available information | |
TeslaReportAlgo DEBUG 0#Particle.particleID.pid = -13 | |
TeslaReportAlgo DEBUG 1#Particle.measuredMass = 105.658 | |
TeslaReportAlgo DEBUG 10#Particle.momCov00 = 15.3244 | |
TeslaReportAlgo DEBUG 11#Particle.momCov11 = 12.4659 | |
TeslaReportAlgo DEBUG 12#Particle.momCov22 = 895.677 | |
TeslaReportAlgo DEBUG 13#Particle.momCov33 = 916.267 | |
TeslaReportAlgo DEBUG 14#Particle.momCov10 = -9.88447 | |
TeslaReportAlgo DEBUG 15#Particle.momCov20 = 102.932 | |
TeslaReportAlgo DEBUG 16#Particle.momCov21 = -88.8526 | |
TeslaReportAlgo DEBUG 17#Particle.momCov30 = 104.47 | |
TeslaReportAlgo DEBUG 18#Particle.momCov31 = -90.1871 | |
TeslaReportAlgo DEBUG 19#Particle.momCov32 = 905.877 | |
TeslaReportAlgo DEBUG 2#Particle.referencePoint.z = 30.2506 | |
TeslaReportAlgo DEBUG 20#Particle.posmomCov00 = -0.0252605 | |
TeslaReportAlgo DEBUG 21#Particle.posmomCov11 = -0.0271776 | |
TeslaReportAlgo DEBUG 22#Particle.posmomCov22 = 0 | |
TeslaReportAlgo DEBUG 23#Particle.posmomCov10 = -0.00498056 | |
TeslaReportAlgo DEBUG 24#Particle.posmomCov01 = -0.00529668 | |
TeslaReportAlgo DEBUG 25#Particle.posmomCov20 = 0.000363411 | |
TeslaReportAlgo DEBUG 26#Particle.posmomCov02 = 0 | |
TeslaReportAlgo DEBUG 27#Particle.posmomCov21 = -0.00537819 | |
TeslaReportAlgo DEBUG 28#Particle.posmomCov12 = 0 | |
TeslaReportAlgo DEBUG 29#Particle.posmomCov30 = -0.00202929 | |
TeslaReportAlgo DEBUG 3#Particle.referencePoint.x = -0.0253125 | |
TeslaReportAlgo DEBUG 30#Particle.posmomCov31 = -0.00324148 | |
TeslaReportAlgo DEBUG 31#Particle.posmomCov32 = 0 | |
TeslaReportAlgo DEBUG 32#Particle.posCov00 = 0.000217669 | |
TeslaReportAlgo DEBUG 33#Particle.posCov11 = 0.000254113 | |
TeslaReportAlgo DEBUG 34#Particle.posCov22 = 0 | |
TeslaReportAlgo DEBUG 35#Particle.posCov10 = 7.64039e-05 | |
TeslaReportAlgo DEBUG 36#Particle.posCov20 = 0 | |
TeslaReportAlgo DEBUG 37#Particle.posCov21 = 0 | |
TeslaReportAlgo DEBUG 4#Particle.referencePoint.y = 0.00581073 | |
TeslaReportAlgo DEBUG 5#Particle.slopes.x = 0.115314 | |
TeslaReportAlgo DEBUG 6#Particle.slopes.y = -0.0997075 | |
TeslaReportAlgo DEBUG 7#Particle.1/p = 0.000111266 | |
TeslaReportAlgo DEBUG 8#Particle.conflevel = 0.250063 | |
TeslaReportAlgo DEBUG 9#Particle.massErr = 0 | |
TeslaReportAlgo DEBUG p = 8987.47 | |
TeslaReportAlgo DEBUG p (par_mom) = 8987.47 | |
TeslaReportAlgo DEBUG pT (par_mom) = 1354.43 | |
TeslaReportAlgo DEBUG Particle measured mass = 105.658 | |
TeslaReportAlgo DEBUG Particle CL = 0.250063 | |
TeslaReportAlgo DEBUG Available information (track) | |
TeslaReportAlgo DEBUG 0#Track.firstState.z = 30.2506 | |
TeslaReportAlgo DEBUG 1#Track.firstState.x = -0.0253125 | |
TeslaReportAlgo DEBUG 10#Track.flags = 2.19556e+06 | |
TeslaReportAlgo DEBUG 11#Track.lastState.z = 11900 | |
TeslaReportAlgo DEBUG 12#Track.lastState.x = 421.626 | |
TeslaReportAlgo DEBUG 13#Track.lastState.y = -1161.12 | |
TeslaReportAlgo DEBUG 14#Track.lastState.tx = -0.0287445 | |
TeslaReportAlgo DEBUG 15#Track.lastState.ty = -0.0967837 | |
TeslaReportAlgo DEBUG 16#Track.lastState.qOverP = 0.000111872 | |
TeslaReportAlgo DEBUG 2#Track.firstState.y = 0.00581073 | |
TeslaReportAlgo DEBUG 3#Track.firstState.tx = 0.115314 | |
TeslaReportAlgo DEBUG 4#Track.firstState.ty = -0.0997075 | |
TeslaReportAlgo DEBUG 5#Track.firstState.qOverP = 0.000111266 | |
TeslaReportAlgo DEBUG 6#Track.chi2PerDoF = 0.939591 | |
TeslaReportAlgo DEBUG 7#Track.nDoF = 34 | |
TeslaReportAlgo DEBUG 8#Track.Likelihood = 999 | |
TeslaReportAlgo DEBUG 9#Track.GhostProb = 999 | |
TeslaReportAlgo DEBUG FastTTValidationTool/ValidateWithTT = 0 | |
TeslaReportAlgo DEBUG MatchVeloMuon = 1 | |
TeslaReportAlgo DEBUG PatForwardTool/LooseForward = 1 | |
TeslaReportAlgo DEBUG Track #chi^{2}/DoF = 0.939591 | |
TeslaReportAlgo DEBUG Track extra for Rep v2, adding last state | |
TeslaReportAlgo DEBUG Track details added | |
TeslaReportAlgo DEBUG Available information (proto) | |
TeslaReportAlgo DEBUG 0#Proto.extraInfo.IsPhoton = -1000 | |
TeslaReportAlgo DEBUG Proto isPhoton = -1000 | |
TeslaReportAlgo DEBUG ProtoParticle details added | |
TeslaReportAlgo DEBUG Available information (muon) | |
TeslaReportAlgo DEBUG 0#Muon.MuonLLMu = -1.36258 | |
TeslaReportAlgo DEBUG 1#Muon.MuonLLBg = -4.13009 | |
TeslaReportAlgo DEBUG 2#Muon.NShared = 0 | |
TeslaReportAlgo DEBUG 3#Muon.Status = 31 | |
TeslaReportAlgo DEBUG 4#Muon.IsMuon = 1 | |
TeslaReportAlgo DEBUG 5#Muon.IsMuonLoose = 1 | |
TeslaReportAlgo DEBUG 6#Muon.IsMuonTight = 1 | |
TeslaReportAlgo DEBUG Muon LLMu = -1.36258 | |
TeslaReportAlgo DEBUG MuonPID details added | |
TeslaReportAlgo DEBUG Available information (track) | |
TeslaReportAlgo DEBUG 0#Track.firstState.z = 9450 | |
TeslaReportAlgo DEBUG 1#Track.firstState.x = 490.607 | |
TeslaReportAlgo DEBUG 10#Track.flags = 167 | |
TeslaReportAlgo DEBUG 11#Track.lastState.z = 9450 | |
TeslaReportAlgo DEBUG 12#Track.lastState.x = 490.607 | |
TeslaReportAlgo DEBUG 13#Track.lastState.y = -923.851 | |
TeslaReportAlgo DEBUG 14#Track.lastState.tx = -0.0269016 | |
TeslaReportAlgo DEBUG 15#Track.lastState.ty = -0.0969565 | |
TeslaReportAlgo DEBUG 16#Track.lastState.qOverP = 0.000111734 | |
TeslaReportAlgo DEBUG 2#Track.firstState.y = -923.851 | |
TeslaReportAlgo DEBUG 3#Track.firstState.tx = -0.0269016 | |
TeslaReportAlgo DEBUG 4#Track.firstState.ty = -0.0969565 | |
TeslaReportAlgo DEBUG 5#Track.firstState.qOverP = 0.000111734 | |
TeslaReportAlgo DEBUG 6#Track.chi2PerDoF = 0 | |
TeslaReportAlgo DEBUG 7#Track.nDoF = 0 | |
TeslaReportAlgo DEBUG 8#Track.Likelihood = 999 | |
TeslaReportAlgo DEBUG 9#Track.GhostProb = 999 | |
TeslaReportAlgo DEBUG Track #chi^{2}/DoF = 0 | |
TeslaReportAlgo DEBUG Track extra for Rep v2, adding last state | |
TeslaReportAlgo DEBUG Track details added | |
TeslaReportAlgo DEBUG Starting to tie pieces together | |
TeslaReportAlgo DEBUG Pieces tied together | |
TeslaReportAlgo DEBUG Daughter level 1 CLASS ID = 801 | |
TeslaReportAlgo DEBUG 1st Gen. Daughter ID: 13 | |
TeslaReportAlgo DEBUG Basic daughter level 1 has substructure consisting of: | |
TeslaReportAlgo DEBUG 10010 | |
TeslaReportAlgo DEBUG 803 | |
TeslaReportAlgo DEBUG 11050 | |
TeslaReportAlgo DEBUG 10010 | |
TeslaReportAlgo DEBUG Available information | |
TeslaReportAlgo DEBUG 0#Particle.particleID.pid = 13 | |
TeslaReportAlgo DEBUG 1#Particle.measuredMass = 105.658 | |
TeslaReportAlgo DEBUG 10#Particle.momCov00 = 32.703 | |
TeslaReportAlgo DEBUG 11#Particle.momCov11 = 5.13161 | |
TeslaReportAlgo DEBUG 12#Particle.momCov22 = 358.05 | |
TeslaReportAlgo DEBUG 13#Particle.momCov33 = 387.801 | |
TeslaReportAlgo DEBUG 14#Particle.momCov10 = -0.641312 | |
TeslaReportAlgo DEBUG 15#Particle.momCov20 = -102.982 | |
TeslaReportAlgo DEBUG 16#Particle.momCov21 = 2.15571 | |
TeslaReportAlgo DEBUG 17#Particle.momCov30 = -108 | |
TeslaReportAlgo DEBUG 18#Particle.momCov31 = 2.29073 | |
TeslaReportAlgo DEBUG 19#Particle.momCov32 = 372.514 | |
TeslaReportAlgo DEBUG 2#Particle.referencePoint.z = 30.4356 | |
TeslaReportAlgo DEBUG 20#Particle.posmomCov00 = -0.0233024 | |
TeslaReportAlgo DEBUG 21#Particle.posmomCov11 = -0.0522617 | |
TeslaReportAlgo DEBUG 22#Particle.posmomCov22 = 0 | |
TeslaReportAlgo DEBUG 23#Particle.posmomCov10 = 0.000408909 | |
TeslaReportAlgo DEBUG 24#Particle.posmomCov01 = -0.00298118 | |
TeslaReportAlgo DEBUG 25#Particle.posmomCov20 = -0.0060272 | |
TeslaReportAlgo DEBUG 26#Particle.posmomCov02 = 0 | |
TeslaReportAlgo DEBUG 27#Particle.posmomCov21 = 0.0120716 | |
TeslaReportAlgo DEBUG 28#Particle.posmomCov12 = 0 | |
TeslaReportAlgo DEBUG 29#Particle.posmomCov30 = 0.000702313 | |
TeslaReportAlgo DEBUG 3#Particle.referencePoint.x = 0.00400581 | |
TeslaReportAlgo DEBUG 30#Particle.posmomCov31 = 0.011993 | |
TeslaReportAlgo DEBUG 31#Particle.posmomCov32 = 0 | |
TeslaReportAlgo DEBUG 32#Particle.posCov00 = 0.000260181 | |
TeslaReportAlgo DEBUG 33#Particle.posCov11 = 0.000672406 | |
TeslaReportAlgo DEBUG 34#Particle.posCov22 = 0 | |
TeslaReportAlgo DEBUG 35#Particle.posCov10 = -1.06097e-05 | |
TeslaReportAlgo DEBUG 36#Particle.posCov20 = 0 | |
TeslaReportAlgo DEBUG 37#Particle.posCov21 = 0 | |
TeslaReportAlgo DEBUG 4#Particle.referencePoint.y = 0.0267601 | |
TeslaReportAlgo DEBUG 5#Particle.slopes.x = -0.289887 | |
TeslaReportAlgo DEBUG 6#Particle.slopes.y = 0.00854825 | |
TeslaReportAlgo DEBUG 7#Particle.1/p = 0.000164756 | |
TeslaReportAlgo DEBUG 8#Particle.conflevel = 0.250063 | |
TeslaReportAlgo DEBUG 9#Particle.massErr = 0 | |
TeslaReportAlgo DEBUG p = 6069.59 | |
TeslaReportAlgo DEBUG p (par_mom) = 6069.59 | |
TeslaReportAlgo DEBUG pT (par_mom) = 1690.6 | |
TeslaReportAlgo DEBUG Particle measured mass = 105.658 | |
TeslaReportAlgo DEBUG Particle CL = 0.250063 | |
TeslaReportAlgo DEBUG Available information (track) | |
TeslaReportAlgo DEBUG 0#Track.firstState.z = 30.4356 | |
TeslaReportAlgo DEBUG 1#Track.firstState.x = 0.00400581 | |
TeslaReportAlgo DEBUG 10#Track.flags = 2.19556e+06 | |
TeslaReportAlgo DEBUG 11#Track.lastState.z = 11900 | |
TeslaReportAlgo DEBUG 12#Track.lastState.x = -2043.68 | |
TeslaReportAlgo DEBUG 13#Track.lastState.y = 100.497 | |
TeslaReportAlgo DEBUG 14#Track.lastState.tx = -0.0787015 | |
TeslaReportAlgo DEBUG 15#Track.lastState.ty = 0.00829925 | |
TeslaReportAlgo DEBUG 16#Track.lastState.qOverP = -0.000166075 | |
TeslaReportAlgo DEBUG 2#Track.firstState.y = 0.0267601 | |
TeslaReportAlgo DEBUG 3#Track.firstState.tx = -0.289887 | |
TeslaReportAlgo DEBUG 4#Track.firstState.ty = 0.00854825 | |
TeslaReportAlgo DEBUG 5#Track.firstState.qOverP = -0.000164756 | |
TeslaReportAlgo DEBUG 6#Track.chi2PerDoF = 0.505033 | |
TeslaReportAlgo DEBUG 7#Track.nDoF = 28 | |
TeslaReportAlgo DEBUG 8#Track.Likelihood = 999 | |
TeslaReportAlgo DEBUG 9#Track.GhostProb = 999 | |
TeslaReportAlgo DEBUG MatchVeloMuon = 1 | |
TeslaReportAlgo DEBUG PatForwardTool/LooseForward = 1 | |
TeslaReportAlgo DEBUG Track #chi^{2}/DoF = 0.505033 | |
TeslaReportAlgo DEBUG Track extra for Rep v2, adding last state | |
TeslaReportAlgo DEBUG Track details added | |
TeslaReportAlgo DEBUG Available information (proto) | |
TeslaReportAlgo DEBUG 0#Proto.extraInfo.IsPhoton = -1000 | |
TeslaReportAlgo DEBUG Proto isPhoton = -1000 | |
TeslaReportAlgo DEBUG ProtoParticle details added | |
TeslaReportAlgo DEBUG Available information (muon) | |
TeslaReportAlgo DEBUG 0#Muon.MuonLLMu = -0.0336602 | |
TeslaReportAlgo DEBUG 1#Muon.MuonLLBg = -1.26142 | |
TeslaReportAlgo DEBUG 2#Muon.NShared = 0 | |
TeslaReportAlgo DEBUG 3#Muon.Status = 31 | |
TeslaReportAlgo DEBUG 4#Muon.IsMuon = 1 | |
TeslaReportAlgo DEBUG 5#Muon.IsMuonLoose = 1 | |
TeslaReportAlgo DEBUG 6#Muon.IsMuonTight = 1 | |
TeslaReportAlgo DEBUG Muon LLMu = -0.0336602 | |
TeslaReportAlgo DEBUG MuonPID details added | |
TeslaReportAlgo DEBUG Available information (track) | |
TeslaReportAlgo DEBUG 0#Track.firstState.z = 9450 | |
TeslaReportAlgo DEBUG 1#Track.firstState.x = -1848.69 | |
TeslaReportAlgo DEBUG 10#Track.flags = 167 | |
TeslaReportAlgo DEBUG 11#Track.lastState.z = 9450 | |
TeslaReportAlgo DEBUG 12#Track.lastState.x = -1848.69 | |
TeslaReportAlgo DEBUG 13#Track.lastState.y = 80.1298 | |
TeslaReportAlgo DEBUG 14#Track.lastState.tx = -0.0815129 | |
TeslaReportAlgo DEBUG 15#Track.lastState.ty = 0.00833181 | |
TeslaReportAlgo DEBUG 16#Track.lastState.qOverP = -0.000165781 | |
TeslaReportAlgo DEBUG 2#Track.firstState.y = 80.1298 | |
TeslaReportAlgo DEBUG 3#Track.firstState.tx = -0.0815129 | |
TeslaReportAlgo DEBUG 4#Track.firstState.ty = 0.00833181 | |
TeslaReportAlgo DEBUG 5#Track.firstState.qOverP = -0.000165781 | |
TeslaReportAlgo DEBUG 6#Track.chi2PerDoF = 0 | |
TeslaReportAlgo DEBUG 7#Track.nDoF = 0 | |
TeslaReportAlgo DEBUG 8#Track.Likelihood = 999 | |
TeslaReportAlgo DEBUG 9#Track.GhostProb = 999 | |
TeslaReportAlgo DEBUG Track #chi^{2}/DoF = 0 | |
TeslaReportAlgo DEBUG Track extra for Rep v2, adding last state | |
TeslaReportAlgo DEBUG Track details added | |
TeslaReportAlgo DEBUG Starting to tie pieces together | |
TeslaReportAlgo DEBUG Pieces tied together | |
TeslaReportAlgo DEBUG Daughter level 1 CLASS ID = 802 | |
TeslaReportAlgo DEBUG Available information (vertex) | |
TeslaReportAlgo DEBUG 0#Vertex.chi2 = 1.73449 | |
TeslaReportAlgo DEBUG 1#Vertex.ndf = 1 | |
TeslaReportAlgo DEBUG 10#Vertex.cov20 = -0.000161814 | |
TeslaReportAlgo DEBUG 11#Vertex.cov21 = -0.000323975 | |
TeslaReportAlgo DEBUG 2#Vertex.position.x = 0.00160234 | |
TeslaReportAlgo DEBUG 3#Vertex.position.y = -0.00120504 | |
TeslaReportAlgo DEBUG 4#Vertex.position.z = 30.4354 | |
TeslaReportAlgo DEBUG 5#Vertex.technique = 0 | |
TeslaReportAlgo DEBUG 6#Vertex.cov00 = 0.00012564 | |
TeslaReportAlgo DEBUG 7#Vertex.cov11 = 0.000215843 | |
TeslaReportAlgo DEBUG 8#Vertex.cov22 = 0.0026759 | |
TeslaReportAlgo DEBUG 9#Vertex.cov10 = 4.88952e-05 | |
TeslaReportAlgo DEBUG Decay vertex chi2 = 1.73449 | |
TeslaReportAlgo DEBUG Setting mother decay vertex | |
TeslaReportAlgo DEBUG End of algorithm execution | |
TeslaReportAlgo DEBUG ==> Execute | |
TeslaReportAlgo... DEBUG SelReports version check requested | |
Hlt2SelReportsD...WARNING HltSelReportsDecoder:: No appropriate HltSelReports RawBank in RawEvent. Quiting. | |
TeslaReportAlgo...WARNING Sel. reports do not exist!!! | |
TeslaReportAlgo DEBUG VersionNum = 0 | |
TeslaReportAlgo WARNING Requested version number does not equal checker response | |
TeslaReportAlgo DEBUG versionNum = 0, m_ReportVersion = 2 | |
TeslaReportAlgo WARNING For your own safety, I will give you less information than requested, please check report generation | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Particle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Particles' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::ProtoParticle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Protos' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Vertex,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Vertices' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Track,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Tracks' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::RichPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/RichPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::MuonPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/MuonPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::VertexBase,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Rec/Vertex/Primary' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'LHCb::Relation1D<LHCb::Particle,LHCb::VertexBase>' is registered in TS at address 'Tesla/Particle2VertexRelations' | |
Hlt1VertexRepor...WARNING HltVertexReportsDecoder:: No HltVertexReports RawBank for requested SourceID in RawEvent. Quiting. | |
TeslaReportAlgo DEBUG The object of type 'LHCb::HltVertexReports*' has been retrieved from TS at address 'Hlt1/VertexReports' | |
TeslaReportAlgo DEBUG Available vertex reports: | |
Hlt2SelReportsD...WARNING HltSelReportsDecoder:: No appropriate HltSelReports RawBank in RawEvent. Quiting. | |
TeslaReportAlgo WARNING Sel. reports do not exist!!! | |
TeslaReportAlgo DEBUG ==> Execute | |
TeslaReportAlgo... DEBUG SelReports version check requested | |
TeslaReportAlgo... DEBUG The object of type 'LHCb::HltSelReports*' has been retrieved from TS at address 'Hlt2/SelReports' | |
TeslaReportAlgo... DEBUG Examining mother report | |
TeslaReportAlgo... DEBUG Mother report is of a particle | |
TeslaReportAlgo... DEBUG ReportCheckTool finds verision 2 | |
TeslaReportAlgo DEBUG VersionNum = 2 | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Particle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Particles' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::ProtoParticle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Protos' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Vertex,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Vertices' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Track,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Tracks' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::RichPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/RichPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::MuonPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/MuonPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::VertexBase,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Rec/Vertex/Primary' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'LHCb::Relation1D<LHCb::Particle,LHCb::VertexBase>' is registered in TS at address 'Tesla/Particle2VertexRelations' | |
TeslaReportAlgo DEBUG The object of type 'LHCb::HltVertexReports*' has been retrieved from TS at address 'Hlt1/VertexReports' | |
TeslaReportAlgo DEBUG Available vertex reports: | |
TeslaReportAlgo DEBUG PV3D | |
TeslaReportAlgo DEBUG ProtoPV3D | |
TeslaReportAlgo DEBUG Vertex chi2= 63.9816, ndf =97 | |
TeslaReportAlgo DEBUG Vertex key= 0 | |
TeslaReportAlgo DEBUG Vertex chi2= 65.576, ndf =63 | |
TeslaReportAlgo DEBUG Vertex key= 1 | |
TeslaReportAlgo DEBUG Vertex chi2= 9.04657, ndf =13 | |
TeslaReportAlgo DEBUG Vertex key= 2 | |
TeslaReportAlgo DEBUG The object of type 'LHCb::HltSelReports*' has been retrieved from TS at address 'Hlt2/SelReports' | |
TeslaReportAlgo DEBUG Available reports: | |
TeslaReportAlgo DEBUG Hlt2DiMuonDecision | |
TeslaReportAlgo DEBUG Hlt2DiMuonJPsiDecision | |
TeslaReportAlgo DEBUG Hlt2Global | |
TeslaReportAlgo DEBUG Hlt2SingleMuonLowPTDecision | |
TeslaReportAlgo DEBUG Required line has been fired | |
TeslaReportAlgo DEBUG Reference: | |
TeslaReportAlgo DEBUG Particle class ID = 801 | |
TeslaReportAlgo DEBUG Track class ID = 10010 | |
TeslaReportAlgo DEBUG RecVertex class ID = 10030 | |
TeslaReportAlgo DEBUG Vertex class ID = 802 | |
TeslaReportAlgo DEBUG ProtoParticle class ID = 803 | |
TeslaReportAlgo DEBUG { summarizedObjectCLID : 1 numericalInfo : { 0#SelectionID:50201 , } substructure : { 18:801 , } lhcbIDs : { } } | |
TeslaReportAlgo DEBUG MOTHER CLASS ID = 1 | |
TeslaReportAlgo DEBUG LHCbIDs.size() = 0 | |
TeslaReportAlgo DEBUG Number of triggered candidates = 1 | |
TeslaReportAlgo DEBUG [0xb568100] | |
TeslaReportAlgo DEBUG Starting loop over triggered candidates | |
TeslaReportAlgo DEBUG Mother object CLASS ID = 801 | |
TeslaReportAlgo DEBUG Found mother with ID: 443 | |
TeslaReportAlgo DEBUG Mother has substructure consisting of: | |
TeslaReportAlgo DEBUG 801 | |
TeslaReportAlgo DEBUG 801 | |
TeslaReportAlgo DEBUG 802 | |
TeslaReportAlgo DEBUG Available information | |
TeslaReportAlgo DEBUG 0#Particle.particleID.pid = 443 | |
TeslaReportAlgo DEBUG 1#Particle.measuredMass = 3101.65 | |
TeslaReportAlgo DEBUG 10#Particle.momCov00 = 116.883 | |
TeslaReportAlgo DEBUG 11#Particle.momCov11 = 136.079 | |
TeslaReportAlgo DEBUG 12#Particle.momCov22 = 20997.7 | |
TeslaReportAlgo DEBUG 13#Particle.momCov33 = 21219.3 | |
TeslaReportAlgo DEBUG 14#Particle.momCov10 = 77.9145 | |
TeslaReportAlgo DEBUG 15#Particle.momCov20 = -1448.45 | |
TeslaReportAlgo DEBUG 16#Particle.momCov21 = -1187.86 | |
TeslaReportAlgo DEBUG 17#Particle.momCov30 = -1456.71 | |
TeslaReportAlgo DEBUG 18#Particle.momCov31 = -1200.92 | |
TeslaReportAlgo DEBUG 19#Particle.momCov32 = 21107.8 | |
TeslaReportAlgo DEBUG 2#Particle.referencePoint.z = -33.7609 | |
TeslaReportAlgo DEBUG 20#Particle.posmomCov00 = -0.0348073 | |
TeslaReportAlgo DEBUG 21#Particle.posmomCov11 = -0.0359156 | |
TeslaReportAlgo DEBUG 22#Particle.posmomCov22 = -0.0685746 | |
TeslaReportAlgo DEBUG 23#Particle.posmomCov10 = -0.00320232 | |
TeslaReportAlgo DEBUG 24#Particle.posmomCov01 = 0.00283905 | |
TeslaReportAlgo DEBUG 25#Particle.posmomCov20 = -0.0153928 | |
TeslaReportAlgo DEBUG 26#Particle.posmomCov02 = 0.0104064 | |
TeslaReportAlgo DEBUG 27#Particle.posmomCov21 = 0.00631154 | |
TeslaReportAlgo DEBUG 28#Particle.posmomCov12 = 0.076551 | |
TeslaReportAlgo DEBUG 29#Particle.posmomCov30 = -0.0145843 | |
TeslaReportAlgo DEBUG 3#Particle.referencePoint.x = 0.0166072 | |
TeslaReportAlgo DEBUG 30#Particle.posmomCov31 = 0.00655673 | |
TeslaReportAlgo DEBUG 31#Particle.posmomCov32 = -0.0488201 | |
TeslaReportAlgo DEBUG 32#Particle.posCov00 = 0.000155543 | |
TeslaReportAlgo DEBUG 33#Particle.posCov11 = 0.000279371 | |
TeslaReportAlgo DEBUG 34#Particle.posCov22 = 0.0137083 | |
TeslaReportAlgo DEBUG 35#Particle.posCov10 = 9.79084e-05 | |
TeslaReportAlgo DEBUG 36#Particle.posCov20 = -0.000910299 | |
TeslaReportAlgo DEBUG 37#Particle.posCov21 = -0.00171994 | |
TeslaReportAlgo DEBUG 4#Particle.referencePoint.y = -0.03413 | |
TeslaReportAlgo DEBUG 5#Particle.slopes.x = -0.067433 | |
TeslaReportAlgo DEBUG 6#Particle.slopes.y = -0.0820283 | |
TeslaReportAlgo DEBUG 7#Particle.1/p = 2.13234e-05 | |
TeslaReportAlgo DEBUG 8#Particle.conflevel = -1 | |
TeslaReportAlgo DEBUG 9#Particle.massErr = 9.62015 | |
TeslaReportAlgo DEBUG p = 46896.9 | |
TeslaReportAlgo DEBUG p (par_mom) = 46896.9 | |
TeslaReportAlgo DEBUG pT (par_mom) = 4952.03 | |
TeslaReportAlgo DEBUG Particle measured mass = 3101.65 | |
TeslaReportAlgo DEBUG Particle CL = -1 | |
TeslaReportAlgo DEBUG Daughter level 1 CLASS ID = 801 | |
TeslaReportAlgo DEBUG 1st Gen. Daughter ID: -13 | |
TeslaReportAlgo DEBUG Basic daughter level 1 has substructure consisting of: | |
TeslaReportAlgo DEBUG 10010 | |
TeslaReportAlgo DEBUG 803 | |
TeslaReportAlgo DEBUG 11050 | |
TeslaReportAlgo DEBUG 10010 | |
TeslaReportAlgo DEBUG Available information | |
TeslaReportAlgo DEBUG 0#Particle.particleID.pid = -13 | |
TeslaReportAlgo DEBUG 1#Particle.measuredMass = 105.658 | |
TeslaReportAlgo DEBUG 10#Particle.momCov00 = 95.3409 | |
TeslaReportAlgo DEBUG 11#Particle.momCov11 = 29.1519 | |
TeslaReportAlgo DEBUG 12#Particle.momCov22 = 17747.2 | |
TeslaReportAlgo DEBUG 13#Particle.momCov33 = 17856.1 | |
TeslaReportAlgo DEBUG 14#Particle.momCov10 = 43.0579 | |
TeslaReportAlgo DEBUG 15#Particle.momCov20 = -1247.3 | |
TeslaReportAlgo DEBUG 16#Particle.momCov21 = -617.039 | |
TeslaReportAlgo DEBUG 17#Particle.momCov30 = -1251.65 | |
TeslaReportAlgo DEBUG 18#Particle.momCov31 = -619.175 | |
TeslaReportAlgo DEBUG 19#Particle.momCov32 = 17801.6 | |
TeslaReportAlgo DEBUG 2#Particle.referencePoint.z = -33.6804 | |
TeslaReportAlgo DEBUG 20#Particle.posmomCov00 = -0.0277964 | |
TeslaReportAlgo DEBUG 21#Particle.posmomCov11 = -0.0335226 | |
TeslaReportAlgo DEBUG 22#Particle.posmomCov22 = 0 | |
TeslaReportAlgo DEBUG 23#Particle.posmomCov10 = 0.00517496 | |
TeslaReportAlgo DEBUG 24#Particle.posmomCov01 = 0.00259279 | |
TeslaReportAlgo DEBUG 25#Particle.posmomCov20 = -0.0641425 | |
TeslaReportAlgo DEBUG 26#Particle.posmomCov02 = 0 | |
TeslaReportAlgo DEBUG 27#Particle.posmomCov21 = 0.00819011 | |
TeslaReportAlgo DEBUG 28#Particle.posmomCov12 = 0 | |
TeslaReportAlgo DEBUG 29#Particle.posmomCov30 = -0.0621599 | |
TeslaReportAlgo DEBUG 3#Particle.referencePoint.x = 0.0164556 | |
TeslaReportAlgo DEBUG 30#Particle.posmomCov31 = 0.00914278 | |
TeslaReportAlgo DEBUG 31#Particle.posmomCov32 = 0 | |
TeslaReportAlgo DEBUG 32#Particle.posCov00 = 0.00016267 | |
TeslaReportAlgo DEBUG 33#Particle.posCov11 = 0.00017686 | |
TeslaReportAlgo DEBUG 34#Particle.posCov22 = 0 | |
TeslaReportAlgo DEBUG 35#Particle.posCov10 = -2.83452e-05 | |
TeslaReportAlgo DEBUG 36#Particle.posCov20 = 0 | |
TeslaReportAlgo DEBUG 37#Particle.posCov21 = 0 | |
TeslaReportAlgo DEBUG 4#Particle.referencePoint.y = -0.0374652 | |
TeslaReportAlgo DEBUG 5#Particle.slopes.x = -0.070834 | |
TeslaReportAlgo DEBUG 6#Particle.slopes.y = -0.0347466 | |
TeslaReportAlgo DEBUG 7#Particle.1/p = 3.2187e-05 | |
TeslaReportAlgo DEBUG 8#Particle.conflevel = 0.250063 | |
TeslaReportAlgo DEBUG 9#Particle.massErr = 0 | |
TeslaReportAlgo DEBUG p = 31068.5 | |
TeslaReportAlgo DEBUG p (par_mom) = 31068.5 | |
TeslaReportAlgo DEBUG pT (par_mom) = 2443.63 | |
TeslaReportAlgo DEBUG Particle measured mass = 105.658 | |
TeslaReportAlgo DEBUG Particle CL = 0.250063 | |
TeslaReportAlgo DEBUG Available information (track) | |
TeslaReportAlgo DEBUG 0#Track.firstState.z = -33.6804 | |
TeslaReportAlgo DEBUG 1#Track.firstState.x = 0.0164556 | |
TeslaReportAlgo DEBUG 10#Track.flags = 2.19556e+06 | |
TeslaReportAlgo DEBUG 11#Track.lastState.z = 11900 | |
TeslaReportAlgo DEBUG 12#Track.lastState.x = -1112.55 | |
TeslaReportAlgo DEBUG 13#Track.lastState.y = -418.442 | |
TeslaReportAlgo DEBUG 14#Track.lastState.tx = -0.111914 | |
TeslaReportAlgo DEBUG 15#Track.lastState.ty = -0.0351328 | |
TeslaReportAlgo DEBUG 16#Track.lastState.qOverP = 3.224e-05 | |
TeslaReportAlgo DEBUG 2#Track.firstState.y = -0.0374652 | |
TeslaReportAlgo DEBUG 3#Track.firstState.tx = -0.070834 | |
TeslaReportAlgo DEBUG 4#Track.firstState.ty = -0.0347466 | |
TeslaReportAlgo DEBUG 5#Track.firstState.qOverP = 3.2187e-05 | |
TeslaReportAlgo DEBUG 6#Track.chi2PerDoF = 1.28521 | |
TeslaReportAlgo DEBUG 7#Track.nDoF = 35 | |
TeslaReportAlgo DEBUG 8#Track.Likelihood = 999 | |
TeslaReportAlgo DEBUG 9#Track.GhostProb = 999 | |
TeslaReportAlgo DEBUG MatchVeloMuon = 1 | |
TeslaReportAlgo DEBUG PatForwardTool/LooseForward = 1 | |
TeslaReportAlgo DEBUG Track #chi^{2}/DoF = 1.28521 | |
TeslaReportAlgo DEBUG Track extra for Rep v2, adding last state | |
TeslaReportAlgo DEBUG Track details added | |
TeslaReportAlgo DEBUG Available information (proto) | |
TeslaReportAlgo DEBUG 0#Proto.extraInfo.IsPhoton = -1000 | |
TeslaReportAlgo DEBUG Proto isPhoton = -1000 | |
TeslaReportAlgo DEBUG ProtoParticle details added | |
TeslaReportAlgo DEBUG Available information (muon) | |
TeslaReportAlgo DEBUG 0#Muon.MuonLLMu = -0.807885 | |
TeslaReportAlgo DEBUG 1#Muon.MuonLLBg = -5.15361 | |
TeslaReportAlgo DEBUG 2#Muon.NShared = 0 | |
TeslaReportAlgo DEBUG 3#Muon.Status = 31 | |
TeslaReportAlgo DEBUG 4#Muon.IsMuon = 1 | |
TeslaReportAlgo DEBUG 5#Muon.IsMuonLoose = 1 | |
TeslaReportAlgo DEBUG 6#Muon.IsMuonTight = 1 | |
TeslaReportAlgo DEBUG Muon LLMu = -0.807885 | |
TeslaReportAlgo DEBUG MuonPID details added | |
TeslaReportAlgo DEBUG Available information (track) | |
TeslaReportAlgo DEBUG 0#Track.firstState.z = 9450 | |
TeslaReportAlgo DEBUG 1#Track.firstState.x = -838.874 | |
TeslaReportAlgo DEBUG 10#Track.flags = 167 | |
TeslaReportAlgo DEBUG 11#Track.lastState.z = 9450 | |
TeslaReportAlgo DEBUG 12#Track.lastState.x = -838.874 | |
TeslaReportAlgo DEBUG 13#Track.lastState.y = -332.381 | |
TeslaReportAlgo DEBUG 14#Track.lastState.tx = -0.111261 | |
TeslaReportAlgo DEBUG 15#Track.lastState.ty = -0.0351195 | |
TeslaReportAlgo DEBUG 16#Track.lastState.qOverP = 3.22274e-05 | |
TeslaReportAlgo DEBUG 2#Track.firstState.y = -332.381 | |
TeslaReportAlgo DEBUG 3#Track.firstState.tx = -0.111261 | |
TeslaReportAlgo DEBUG 4#Track.firstState.ty = -0.0351195 | |
TeslaReportAlgo DEBUG 5#Track.firstState.qOverP = 3.22274e-05 | |
TeslaReportAlgo DEBUG 6#Track.chi2PerDoF = 0 | |
TeslaReportAlgo DEBUG 7#Track.nDoF = 0 | |
TeslaReportAlgo DEBUG 8#Track.Likelihood = 999 | |
TeslaReportAlgo DEBUG 9#Track.GhostProb = 999 | |
TeslaReportAlgo DEBUG Track #chi^{2}/DoF = 0 | |
TeslaReportAlgo DEBUG Track extra for Rep v2, adding last state | |
TeslaReportAlgo DEBUG Track details added | |
TeslaReportAlgo DEBUG Starting to tie pieces together | |
TeslaReportAlgo DEBUG Pieces tied together | |
TeslaReportAlgo DEBUG Daughter level 1 CLASS ID = 801 | |
TeslaReportAlgo DEBUG 1st Gen. Daughter ID: 13 | |
TeslaReportAlgo DEBUG Basic daughter level 1 has substructure consisting of: | |
TeslaReportAlgo DEBUG 10010 | |
TeslaReportAlgo DEBUG 803 | |
TeslaReportAlgo DEBUG 11050 | |
TeslaReportAlgo DEBUG 10010 | |
TeslaReportAlgo DEBUG Available information | |
TeslaReportAlgo DEBUG 0#Particle.particleID.pid = 13 | |
TeslaReportAlgo DEBUG 1#Particle.measuredMass = 105.658 | |
TeslaReportAlgo DEBUG 10#Particle.momCov00 = 22.1217 | |
TeslaReportAlgo DEBUG 11#Particle.momCov11 = 107.057 | |
TeslaReportAlgo DEBUG 12#Particle.momCov22 = 3279.07 | |
TeslaReportAlgo DEBUG 13#Particle.momCov33 = 3392.02 | |
TeslaReportAlgo DEBUG 14#Particle.momCov10 = 35.1307 | |
TeslaReportAlgo DEBUG 15#Particle.momCov20 = -205.223 | |
TeslaReportAlgo DEBUG 16#Particle.momCov21 = -572.749 | |
TeslaReportAlgo DEBUG 17#Particle.momCov30 = -209.151 | |
TeslaReportAlgo DEBUG 18#Particle.momCov31 = -583.678 | |
TeslaReportAlgo DEBUG 19#Particle.momCov32 = 3334.96 | |
TeslaReportAlgo DEBUG 2#Particle.referencePoint.z = -33.9171 | |
TeslaReportAlgo DEBUG 20#Particle.posmomCov00 = -0.0430563 | |
TeslaReportAlgo DEBUG 21#Particle.posmomCov11 = -0.0219607 | |
TeslaReportAlgo DEBUG 22#Particle.posmomCov22 = 0 | |
TeslaReportAlgo DEBUG 23#Particle.posmomCov10 = -0.00271185 | |
TeslaReportAlgo DEBUG 24#Particle.posmomCov01 = 0.00590456 | |
TeslaReportAlgo DEBUG 25#Particle.posmomCov20 = 0.0421773 | |
TeslaReportAlgo DEBUG 26#Particle.posmomCov02 = 0 | |
TeslaReportAlgo DEBUG 27#Particle.posmomCov21 = -0.014389 | |
TeslaReportAlgo DEBUG 28#Particle.posmomCov12 = 0 | |
TeslaReportAlgo DEBUG 29#Particle.posmomCov30 = 0.0445041 | |
TeslaReportAlgo DEBUG 3#Particle.referencePoint.x = 0.0182922 | |
TeslaReportAlgo DEBUG 30#Particle.posmomCov31 = -0.0107087 | |
TeslaReportAlgo DEBUG 31#Particle.posmomCov32 = 0 | |
TeslaReportAlgo DEBUG 32#Particle.posCov00 = 0.000229395 | |
TeslaReportAlgo DEBUG 33#Particle.posCov11 = 0.000101055 | |
TeslaReportAlgo DEBUG 34#Particle.posCov22 = 0 | |
TeslaReportAlgo DEBUG 35#Particle.posCov10 = -3.89515e-05 | |
TeslaReportAlgo DEBUG 36#Particle.posCov20 = 0 | |
TeslaReportAlgo DEBUG 37#Particle.posCov21 = 0 | |
TeslaReportAlgo DEBUG 4#Particle.referencePoint.y = -0.00562283 | |
TeslaReportAlgo DEBUG 5#Particle.slopes.x = -0.0606886 | |
TeslaReportAlgo DEBUG 6#Particle.slopes.y = -0.175552 | |
TeslaReportAlgo DEBUG 7#Particle.1/p = 6.27877e-05 | |
TeslaReportAlgo DEBUG 8#Particle.conflevel = 0.250063 | |
TeslaReportAlgo DEBUG 9#Particle.massErr = 0 | |
TeslaReportAlgo DEBUG p = 15926.7 | |
TeslaReportAlgo DEBUG p (par_mom) = 15926.7 | |
TeslaReportAlgo DEBUG pT (par_mom) = 2908.57 | |
TeslaReportAlgo DEBUG Particle measured mass = 105.658 | |
TeslaReportAlgo DEBUG Particle CL = 0.250063 | |
TeslaReportAlgo DEBUG Available information (track) | |
TeslaReportAlgo DEBUG 0#Track.firstState.z = -33.9171 | |
TeslaReportAlgo DEBUG 1#Track.firstState.x = 0.0182922 | |
TeslaReportAlgo DEBUG 10#Track.flags = 2.19556e+06 | |
TeslaReportAlgo DEBUG 11#Track.lastState.z = 11900 | |
TeslaReportAlgo DEBUG 12#Track.lastState.x = -173.592 | |
TeslaReportAlgo DEBUG 13#Track.lastState.y = -2082.23 | |
TeslaReportAlgo DEBUG 14#Track.lastState.tx = 0.0223141 | |
TeslaReportAlgo DEBUG 15#Track.lastState.ty = -0.173596 | |
TeslaReportAlgo DEBUG 16#Track.lastState.qOverP = -6.30031e-05 | |
TeslaReportAlgo DEBUG 2#Track.firstState.y = -0.00562283 | |
TeslaReportAlgo DEBUG 3#Track.firstState.tx = -0.0606886 | |
TeslaReportAlgo DEBUG 4#Track.firstState.ty = -0.175552 | |
TeslaReportAlgo DEBUG 5#Track.firstState.qOverP = -6.27877e-05 | |
TeslaReportAlgo DEBUG 6#Track.chi2PerDoF = 1.25206 | |
TeslaReportAlgo DEBUG 7#Track.nDoF = 28 | |
TeslaReportAlgo DEBUG 8#Track.Likelihood = 999 | |
TeslaReportAlgo DEBUG 9#Track.GhostProb = 999 | |
TeslaReportAlgo DEBUG MatchVeloMuon = 1 | |
TeslaReportAlgo DEBUG PatForwardTool/LooseForward = 1 | |
TeslaReportAlgo DEBUG Track #chi^{2}/DoF = 1.25206 | |
TeslaReportAlgo DEBUG Track extra for Rep v2, adding last state | |
TeslaReportAlgo DEBUG Track details added | |
TeslaReportAlgo DEBUG Available information (proto) | |
TeslaReportAlgo DEBUG 0#Proto.extraInfo.IsPhoton = -1000 | |
TeslaReportAlgo DEBUG Proto isPhoton = -1000 | |
TeslaReportAlgo DEBUG ProtoParticle details added | |
TeslaReportAlgo DEBUG Available information (muon) | |
TeslaReportAlgo DEBUG 0#Muon.MuonLLMu = -0.146067 | |
TeslaReportAlgo DEBUG 1#Muon.MuonLLBg = -3.67392 | |
TeslaReportAlgo DEBUG 2#Muon.NShared = 0 | |
TeslaReportAlgo DEBUG 3#Muon.Status = 31 | |
TeslaReportAlgo DEBUG 4#Muon.IsMuon = 1 | |
TeslaReportAlgo DEBUG 5#Muon.IsMuonLoose = 1 | |
TeslaReportAlgo DEBUG 6#Muon.IsMuonTight = 1 | |
TeslaReportAlgo DEBUG Muon LLMu = -0.146067 | |
TeslaReportAlgo DEBUG MuonPID details added | |
TeslaReportAlgo DEBUG Available information (track) | |
TeslaReportAlgo DEBUG 0#Track.firstState.z = 9450 | |
TeslaReportAlgo DEBUG 1#Track.firstState.x = -227.896 | |
TeslaReportAlgo DEBUG 10#Track.flags = 167 | |
TeslaReportAlgo DEBUG 11#Track.lastState.z = 9450 | |
TeslaReportAlgo DEBUG 12#Track.lastState.x = -227.896 | |
TeslaReportAlgo DEBUG 13#Track.lastState.y = -1656.84 | |
TeslaReportAlgo DEBUG 14#Track.lastState.tx = 0.0218333 | |
TeslaReportAlgo DEBUG 15#Track.lastState.ty = -0.17369 | |
TeslaReportAlgo DEBUG 16#Track.lastState.qOverP = -6.29565e-05 | |
TeslaReportAlgo DEBUG 2#Track.firstState.y = -1656.84 | |
TeslaReportAlgo DEBUG 3#Track.firstState.tx = 0.0218333 | |
TeslaReportAlgo DEBUG 4#Track.firstState.ty = -0.17369 | |
TeslaReportAlgo DEBUG 5#Track.firstState.qOverP = -6.29565e-05 | |
TeslaReportAlgo DEBUG 6#Track.chi2PerDoF = 0 | |
TeslaReportAlgo DEBUG 7#Track.nDoF = 0 | |
TeslaReportAlgo DEBUG 8#Track.Likelihood = 999 | |
TeslaReportAlgo DEBUG 9#Track.GhostProb = 999 | |
TeslaReportAlgo DEBUG Track #chi^{2}/DoF = 0 | |
TeslaReportAlgo DEBUG Track extra for Rep v2, adding last state | |
TeslaReportAlgo DEBUG Track details added | |
TeslaReportAlgo DEBUG Starting to tie pieces together | |
TeslaReportAlgo DEBUG Pieces tied together | |
TeslaReportAlgo DEBUG Daughter level 1 CLASS ID = 802 | |
TeslaReportAlgo DEBUG Available information (vertex) | |
TeslaReportAlgo DEBUG 0#Vertex.chi2 = 0.456444 | |
TeslaReportAlgo DEBUG 1#Vertex.ndf = 1 | |
TeslaReportAlgo DEBUG 10#Vertex.cov20 = -0.000910299 | |
TeslaReportAlgo DEBUG 11#Vertex.cov21 = -0.00171994 | |
TeslaReportAlgo DEBUG 2#Vertex.position.x = 0.0166072 | |
TeslaReportAlgo DEBUG 3#Vertex.position.y = -0.03413 | |
TeslaReportAlgo DEBUG 4#Vertex.position.z = -33.7609 | |
TeslaReportAlgo DEBUG 5#Vertex.technique = 0 | |
TeslaReportAlgo DEBUG 6#Vertex.cov00 = 0.000155543 | |
TeslaReportAlgo DEBUG 7#Vertex.cov11 = 0.000279371 | |
TeslaReportAlgo DEBUG 8#Vertex.cov22 = 0.0137083 | |
TeslaReportAlgo DEBUG 9#Vertex.cov10 = 9.79084e-05 | |
TeslaReportAlgo DEBUG Decay vertex chi2 = 0.456444 | |
TeslaReportAlgo DEBUG Setting mother decay vertex | |
TeslaReportAlgo DEBUG End of algorithm execution | |
TeslaReportAlgo DEBUG ==> Execute | |
TeslaReportAlgo... DEBUG SelReports version check requested | |
TeslaReportAlgo... DEBUG The object of type 'LHCb::HltSelReports*' has been retrieved from TS at address 'Hlt2/SelReports' | |
TeslaReportAlgo... DEBUG Examining mother report | |
TeslaReportAlgo... DEBUG Mother report is of a particle | |
TeslaReportAlgo... DEBUG ReportCheckTool finds verision 2 | |
TeslaReportAlgo DEBUG VersionNum = 2 | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Particle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Particles' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::ProtoParticle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Protos' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Vertex,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Vertices' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Track,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Tracks' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::RichPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/RichPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::MuonPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/MuonPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::VertexBase,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Rec/Vertex/Primary' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'LHCb::Relation1D<LHCb::Particle,LHCb::VertexBase>' is registered in TS at address 'Tesla/Particle2VertexRelations' | |
TeslaReportAlgo DEBUG The object of type 'LHCb::HltVertexReports*' has been retrieved from TS at address 'Hlt1/VertexReports' | |
TeslaReportAlgo DEBUG Available vertex reports: | |
TeslaReportAlgo DEBUG PV3D | |
TeslaReportAlgo DEBUG ProtoPV3D | |
TeslaReportAlgo DEBUG Vertex chi2= 47.381, ndf =59 | |
TeslaReportAlgo DEBUG Vertex key= 0 | |
TeslaReportAlgo DEBUG The object of type 'LHCb::HltSelReports*' has been retrieved from TS at address 'Hlt2/SelReports' | |
TeslaReportAlgo DEBUG Available reports: | |
TeslaReportAlgo DEBUG Hlt2DiMuonDecision | |
TeslaReportAlgo DEBUG Hlt2DiMuonJPsiDecision | |
TeslaReportAlgo DEBUG Hlt2Global | |
TeslaReportAlgo DEBUG Hlt2SingleMuonLowPTDecision | |
TeslaReportAlgo DEBUG Required line has been fired | |
TeslaReportAlgo DEBUG Reference: | |
TeslaReportAlgo DEBUG Particle class ID = 801 | |
TeslaReportAlgo DEBUG Track class ID = 10010 | |
TeslaReportAlgo DEBUG RecVertex class ID = 10030 | |
TeslaReportAlgo DEBUG Vertex class ID = 802 | |
TeslaReportAlgo DEBUG ProtoParticle class ID = 803 | |
TeslaReportAlgo DEBUG { summarizedObjectCLID : 1 numericalInfo : { 0#SelectionID:50201 , } substructure : { 14:801 , } lhcbIDs : { } } | |
TeslaReportAlgo DEBUG MOTHER CLASS ID = 1 | |
TeslaReportAlgo DEBUG LHCbIDs.size() = 0 | |
TeslaReportAlgo DEBUG Number of triggered candidates = 1 | |
TeslaReportAlgo DEBUG [0xb568380] | |
TeslaReportAlgo DEBUG Starting loop over triggered candidates | |
TeslaReportAlgo DEBUG Mother object CLASS ID = 801 | |
TeslaReportAlgo DEBUG Found mother with ID: 443 | |
TeslaReportAlgo DEBUG Mother has substructure consisting of: | |
TeslaReportAlgo DEBUG 801 | |
TeslaReportAlgo DEBUG 801 | |
TeslaReportAlgo DEBUG 802 | |
TeslaReportAlgo DEBUG Available information | |
TeslaReportAlgo DEBUG 0#Particle.particleID.pid = 443 | |
TeslaReportAlgo DEBUG 1#Particle.measuredMass = 3099.62 | |
TeslaReportAlgo DEBUG 10#Particle.momCov00 = 40.5625 | |
TeslaReportAlgo DEBUG 11#Particle.momCov11 = 63.9047 | |
TeslaReportAlgo DEBUG 12#Particle.momCov22 = 5993.95 | |
TeslaReportAlgo DEBUG 13#Particle.momCov33 = 6058.08 | |
TeslaReportAlgo DEBUG 14#Particle.momCov10 = -28.2061 | |
TeslaReportAlgo DEBUG 15#Particle.momCov20 = -179.914 | |
TeslaReportAlgo DEBUG 16#Particle.momCov21 = -36.5529 | |
TeslaReportAlgo DEBUG 17#Particle.momCov30 = -182.763 | |
TeslaReportAlgo DEBUG 18#Particle.momCov31 = -34.4664 | |
TeslaReportAlgo DEBUG 19#Particle.momCov32 = 6025.75 | |
TeslaReportAlgo DEBUG 2#Particle.referencePoint.z = -53.1553 | |
TeslaReportAlgo DEBUG 20#Particle.posmomCov00 = -0.097739 | |
TeslaReportAlgo DEBUG 21#Particle.posmomCov11 = -0.106723 | |
TeslaReportAlgo DEBUG 22#Particle.posmomCov22 = -0.118939 | |
TeslaReportAlgo DEBUG 23#Particle.posmomCov10 = 0.0448006 | |
TeslaReportAlgo DEBUG 24#Particle.posmomCov01 = 0.0230995 | |
TeslaReportAlgo DEBUG 25#Particle.posmomCov20 = 0.0275605 | |
TeslaReportAlgo DEBUG 26#Particle.posmomCov02 = 0.391762 | |
TeslaReportAlgo DEBUG 27#Particle.posmomCov21 = 0.00313945 | |
TeslaReportAlgo DEBUG 28#Particle.posmomCov12 = -0.548214 | |
TeslaReportAlgo DEBUG 29#Particle.posmomCov30 = 0.0243158 | |
TeslaReportAlgo DEBUG 3#Particle.referencePoint.x = -0.0012142 | |
TeslaReportAlgo DEBUG 30#Particle.posmomCov31 = 0.00809417 | |
TeslaReportAlgo DEBUG 31#Particle.posmomCov32 = -0.0593323 | |
TeslaReportAlgo DEBUG 32#Particle.posCov00 = 0.000717349 | |
TeslaReportAlgo DEBUG 33#Particle.posCov11 = 0.000657983 | |
TeslaReportAlgo DEBUG 34#Particle.posCov22 = 0.0398944 | |
TeslaReportAlgo DEBUG 35#Particle.posCov10 = -0.000344165 | |
TeslaReportAlgo DEBUG 36#Particle.posCov20 = -0.00429122 | |
TeslaReportAlgo DEBUG 37#Particle.posCov21 = 0.004087 | |
TeslaReportAlgo DEBUG 4#Particle.referencePoint.y = -0.0469519 | |
TeslaReportAlgo DEBUG 5#Particle.slopes.x = -0.0416291 | |
TeslaReportAlgo DEBUG 6#Particle.slopes.y = 0.013638 | |
TeslaReportAlgo DEBUG 7#Particle.1/p = 3.44584e-05 | |
TeslaReportAlgo DEBUG 8#Particle.conflevel = -1 | |
TeslaReportAlgo DEBUG 9#Particle.massErr = 9.12003 | |
TeslaReportAlgo DEBUG p = 29020.5 | |
TeslaReportAlgo DEBUG p (par_mom) = 29020.5 | |
TeslaReportAlgo DEBUG pT (par_mom) = 1270.06 | |
TeslaReportAlgo DEBUG Particle measured mass = 3099.62 | |
TeslaReportAlgo DEBUG Particle CL = -1 | |
TeslaReportAlgo DEBUG Daughter level 1 CLASS ID = 801 | |
TeslaReportAlgo DEBUG 1st Gen. Daughter ID: -13 | |
TeslaReportAlgo DEBUG Basic daughter level 1 has substructure consisting of: | |
TeslaReportAlgo DEBUG 10010 | |
TeslaReportAlgo DEBUG 803 | |
TeslaReportAlgo DEBUG 11050 | |
TeslaReportAlgo DEBUG 10010 | |
TeslaReportAlgo DEBUG Available information | |
TeslaReportAlgo DEBUG 0#Particle.particleID.pid = -13 | |
TeslaReportAlgo DEBUG 1#Particle.measuredMass = 105.658 | |
TeslaReportAlgo DEBUG 10#Particle.momCov00 = 20.3792 | |
TeslaReportAlgo DEBUG 11#Particle.momCov11 = 33.4314 | |
TeslaReportAlgo DEBUG 12#Particle.momCov22 = 4231.5 | |
TeslaReportAlgo DEBUG 13#Particle.momCov33 = 4246.76 | |
TeslaReportAlgo DEBUG 14#Particle.momCov10 = -1.27162 | |
TeslaReportAlgo DEBUG 15#Particle.momCov20 = 17.3206 | |
TeslaReportAlgo DEBUG 16#Particle.momCov21 = -254.273 | |
TeslaReportAlgo DEBUG 17#Particle.momCov30 = 17.4552 | |
TeslaReportAlgo DEBUG 18#Particle.momCov31 = -255.824 | |
TeslaReportAlgo DEBUG 19#Particle.momCov32 = 4239.09 | |
TeslaReportAlgo DEBUG 2#Particle.referencePoint.z = -53.7936 | |
TeslaReportAlgo DEBUG 20#Particle.posmomCov00 = -0.190973 | |
TeslaReportAlgo DEBUG 21#Particle.posmomCov11 = -0.161821 | |
TeslaReportAlgo DEBUG 22#Particle.posmomCov22 = 0 | |
TeslaReportAlgo DEBUG 23#Particle.posmomCov10 = 0.0027077 | |
TeslaReportAlgo DEBUG 24#Particle.posmomCov01 = 0.00322002 | |
TeslaReportAlgo DEBUG 25#Particle.posmomCov20 = 0.0128134 | |
TeslaReportAlgo DEBUG 26#Particle.posmomCov02 = 0 | |
TeslaReportAlgo DEBUG 27#Particle.posmomCov21 = -0.0114267 | |
TeslaReportAlgo DEBUG 28#Particle.posmomCov12 = 0 | |
TeslaReportAlgo DEBUG 29#Particle.posmomCov30 = 0.011784 | |
TeslaReportAlgo DEBUG 3#Particle.referencePoint.x = -0.0201381 | |
TeslaReportAlgo DEBUG 30#Particle.posmomCov31 = -0.00164441 | |
TeslaReportAlgo DEBUG 31#Particle.posmomCov32 = 0 | |
TeslaReportAlgo DEBUG 32#Particle.posCov00 = 0.00198801 | |
TeslaReportAlgo DEBUG 33#Particle.posCov11 = 0.00158858 | |
TeslaReportAlgo DEBUG 34#Particle.posCov22 = 0 | |
TeslaReportAlgo DEBUG 35#Particle.posCov10 = -4.79198e-05 | |
TeslaReportAlgo DEBUG 36#Particle.posCov20 = 0 | |
TeslaReportAlgo DEBUG 37#Particle.posCov21 = 0 | |
TeslaReportAlgo DEBUG 4#Particle.referencePoint.y = -0.0161557 | |
TeslaReportAlgo DEBUG 5#Particle.slopes.x = 0.00442068 | |
TeslaReportAlgo DEBUG 6#Particle.slopes.y = -0.0603447 | |
TeslaReportAlgo DEBUG 7#Particle.1/p = 5.73418e-05 | |
TeslaReportAlgo DEBUG 8#Particle.conflevel = 0.250063 | |
TeslaReportAlgo DEBUG 9#Particle.massErr = 0 | |
TeslaReportAlgo DEBUG p = 17439.3 | |
TeslaReportAlgo DEBUG p (par_mom) = 17439.3 | |
TeslaReportAlgo DEBUG pT (par_mom) = 1053.26 | |
TeslaReportAlgo DEBUG Particle measured mass = 105.658 | |
TeslaReportAlgo DEBUG Particle CL = 0.250063 | |
TeslaReportAlgo DEBUG Available information (track) | |
TeslaReportAlgo DEBUG 0#Track.firstState.z = -53.7936 | |
TeslaReportAlgo DEBUG 1#Track.firstState.x = -0.0201381 | |
TeslaReportAlgo DEBUG 10#Track.flags = 2.19556e+06 | |
TeslaReportAlgo DEBUG 11#Track.lastState.z = 11900 | |
TeslaReportAlgo DEBUG 12#Track.lastState.x = -421.9 | |
TeslaReportAlgo DEBUG 13#Track.lastState.y = -726.546 | |
TeslaReportAlgo DEBUG 14#Track.lastState.tx = -0.0686507 | |
TeslaReportAlgo DEBUG 15#Track.lastState.ty = -0.0606895 | |
TeslaReportAlgo DEBUG 16#Track.lastState.qOverP = 5.75709e-05 | |
TeslaReportAlgo DEBUG 2#Track.firstState.y = -0.0161557 | |
TeslaReportAlgo DEBUG 3#Track.firstState.tx = 0.00442068 | |
TeslaReportAlgo DEBUG 4#Track.firstState.ty = -0.0603447 | |
TeslaReportAlgo DEBUG 5#Track.firstState.qOverP = 5.73418e-05 | |
TeslaReportAlgo DEBUG 6#Track.chi2PerDoF = 1.13619 | |
TeslaReportAlgo DEBUG 7#Track.nDoF = 35 | |
TeslaReportAlgo DEBUG 8#Track.Likelihood = 999 | |
TeslaReportAlgo DEBUG 9#Track.GhostProb = 999 | |
TeslaReportAlgo DEBUG MatchVeloMuon = 1 | |
TeslaReportAlgo DEBUG PatForwardTool/LooseForward = 1 | |
TeslaReportAlgo DEBUG Track #chi^{2}/DoF = 1.13619 | |
TeslaReportAlgo DEBUG Track extra for Rep v2, adding last state | |
TeslaReportAlgo DEBUG Track details added | |
TeslaReportAlgo DEBUG Available information (proto) | |
TeslaReportAlgo DEBUG 0#Proto.extraInfo.IsPhoton = -1000 | |
TeslaReportAlgo DEBUG Proto isPhoton = -1000 | |
TeslaReportAlgo DEBUG ProtoParticle details added | |
TeslaReportAlgo DEBUG Available information (muon) | |
TeslaReportAlgo DEBUG 0#Muon.MuonLLMu = -3.28421 | |
TeslaReportAlgo DEBUG 1#Muon.MuonLLBg = -5.98173 | |
TeslaReportAlgo DEBUG 2#Muon.NShared = 0 | |
TeslaReportAlgo DEBUG 3#Muon.Status = 31 | |
TeslaReportAlgo DEBUG 4#Muon.IsMuon = 1 | |
TeslaReportAlgo DEBUG 5#Muon.IsMuonLoose = 1 | |
TeslaReportAlgo DEBUG 6#Muon.IsMuonTight = 1 | |
TeslaReportAlgo DEBUG Muon LLMu = -3.28421 | |
TeslaReportAlgo DEBUG MuonPID details added | |
TeslaReportAlgo DEBUG Available information (track) | |
TeslaReportAlgo DEBUG 0#Track.firstState.z = 9450 | |
TeslaReportAlgo DEBUG 1#Track.firstState.x = -254.601 | |
TeslaReportAlgo DEBUG 10#Track.flags = 167 | |
TeslaReportAlgo DEBUG 11#Track.lastState.z = 9450 | |
TeslaReportAlgo DEBUG 12#Track.lastState.x = -254.601 | |
TeslaReportAlgo DEBUG 13#Track.lastState.y = -577.857 | |
TeslaReportAlgo DEBUG 14#Track.lastState.tx = -0.0675147 | |
TeslaReportAlgo DEBUG 15#Track.lastState.ty = -0.0606938 | |
TeslaReportAlgo DEBUG 16#Track.lastState.qOverP = 5.75329e-05 | |
TeslaReportAlgo DEBUG 2#Track.firstState.y = -577.857 | |
TeslaReportAlgo DEBUG 3#Track.firstState.tx = -0.0675147 | |
TeslaReportAlgo DEBUG 4#Track.firstState.ty = -0.0606938 | |
TeslaReportAlgo DEBUG 5#Track.firstState.qOverP = 5.75329e-05 | |
TeslaReportAlgo DEBUG 6#Track.chi2PerDoF = 0 | |
TeslaReportAlgo DEBUG 7#Track.nDoF = 0 | |
TeslaReportAlgo DEBUG 8#Track.Likelihood = 999 | |
TeslaReportAlgo DEBUG 9#Track.GhostProb = 999 | |
TeslaReportAlgo DEBUG Track #chi^{2}/DoF = 0 | |
TeslaReportAlgo DEBUG Track extra for Rep v2, adding last state | |
TeslaReportAlgo DEBUG Track details added | |
TeslaReportAlgo DEBUG Starting to tie pieces together | |
TeslaReportAlgo DEBUG Pieces tied together | |
TeslaReportAlgo DEBUG Daughter level 1 CLASS ID = 801 | |
TeslaReportAlgo DEBUG 1st Gen. Daughter ID: 13 | |
TeslaReportAlgo DEBUG Basic daughter level 1 has substructure consisting of: | |
TeslaReportAlgo DEBUG 10010 | |
TeslaReportAlgo DEBUG 803 | |
TeslaReportAlgo DEBUG 11050 | |
TeslaReportAlgo DEBUG 10010 | |
TeslaReportAlgo DEBUG Available information | |
TeslaReportAlgo DEBUG 0#Particle.particleID.pid = 13 | |
TeslaReportAlgo DEBUG 1#Particle.measuredMass = 105.658 | |
TeslaReportAlgo DEBUG 10#Particle.momCov00 = 26.9461 | |
TeslaReportAlgo DEBUG 11#Particle.momCov11 = 32.1008 | |
TeslaReportAlgo DEBUG 12#Particle.momCov22 = 1762.64 | |
TeslaReportAlgo DEBUG 13#Particle.momCov33 = 1811.46 | |
TeslaReportAlgo DEBUG 14#Particle.momCov10 = -23.6169 | |
TeslaReportAlgo DEBUG 15#Particle.momCov20 = -196.093 | |
TeslaReportAlgo DEBUG 16#Particle.momCov21 = 218.28 | |
TeslaReportAlgo DEBUG 17#Particle.momCov30 = -199.262 | |
TeslaReportAlgo DEBUG 18#Particle.momCov31 = 221.827 | |
TeslaReportAlgo DEBUG 19#Particle.momCov32 = 1786.83 | |
TeslaReportAlgo DEBUG 2#Particle.referencePoint.z = -52.9397 | |
TeslaReportAlgo DEBUG 20#Particle.posmomCov00 = -0.0362578 | |
TeslaReportAlgo DEBUG 21#Particle.posmomCov11 = -0.0310404 | |
TeslaReportAlgo DEBUG 22#Particle.posmomCov22 = 0 | |
TeslaReportAlgo DEBUG 23#Particle.posmomCov10 = -0.00705032 | |
TeslaReportAlgo DEBUG 24#Particle.posmomCov01 = -0.0112248 | |
TeslaReportAlgo DEBUG 25#Particle.posmomCov20 = 0.0174153 | |
TeslaReportAlgo DEBUG 26#Particle.posmomCov02 = 0 | |
TeslaReportAlgo DEBUG 27#Particle.posmomCov21 = 0.0204159 | |
TeslaReportAlgo DEBUG 28#Particle.posmomCov12 = 0 | |
TeslaReportAlgo DEBUG 29#Particle.posmomCov30 = 0.0202683 | |
TeslaReportAlgo DEBUG 3#Particle.referencePoint.x = -0.0218847 | |
TeslaReportAlgo DEBUG 30#Particle.posmomCov31 = 0.01754 | |
TeslaReportAlgo DEBUG 31#Particle.posmomCov32 = 0 | |
TeslaReportAlgo DEBUG 32#Particle.posCov00 = 0.000302843 | |
TeslaReportAlgo DEBUG 33#Particle.posCov11 = 0.000289455 | |
TeslaReportAlgo DEBUG 34#Particle.posCov22 = 0 | |
TeslaReportAlgo DEBUG 35#Particle.posCov10 = 0.000131098 | |
TeslaReportAlgo DEBUG 36#Particle.posCov20 = 0 | |
TeslaReportAlgo DEBUG 37#Particle.posCov21 = 0 | |
TeslaReportAlgo DEBUG 4#Particle.referencePoint.y = -0.0174543 | |
TeslaReportAlgo DEBUG 5#Particle.slopes.x = -0.110716 | |
TeslaReportAlgo DEBUG 6#Particle.slopes.y = 0.12485 | |
TeslaReportAlgo DEBUG 7#Particle.1/p = 8.51379e-05 | |
TeslaReportAlgo DEBUG 8#Particle.conflevel = 0.250063 | |
TeslaReportAlgo DEBUG 9#Particle.massErr = 0 | |
TeslaReportAlgo DEBUG p = 11745.7 | |
TeslaReportAlgo DEBUG p (par_mom) = 11745.7 | |
TeslaReportAlgo DEBUG pT (par_mom) = 1933.26 | |
TeslaReportAlgo DEBUG Particle measured mass = 105.658 | |
TeslaReportAlgo DEBUG Particle CL = 0.250063 | |
TeslaReportAlgo DEBUG Available information (track) | |
TeslaReportAlgo DEBUG 0#Track.firstState.z = -52.9397 | |
TeslaReportAlgo DEBUG 1#Track.firstState.x = -0.0218847 | |
TeslaReportAlgo DEBUG 10#Track.flags = 2.19556e+06 | |
TeslaReportAlgo DEBUG 11#Track.lastState.z = 11900 | |
TeslaReportAlgo DEBUG 12#Track.lastState.x = -586.665 | |
TeslaReportAlgo DEBUG 13#Track.lastState.y = 1469.9 | |
TeslaReportAlgo DEBUG 14#Track.lastState.tx = 0.000592954 | |
TeslaReportAlgo DEBUG 15#Track.lastState.ty = 0.122073 | |
TeslaReportAlgo DEBUG 16#Track.lastState.qOverP = -8.55203e-05 | |
TeslaReportAlgo DEBUG 2#Track.firstState.y = -0.0174543 | |
TeslaReportAlgo DEBUG 3#Track.firstState.tx = -0.110716 | |
TeslaReportAlgo DEBUG 4#Track.firstState.ty = 0.12485 | |
TeslaReportAlgo DEBUG 5#Track.firstState.qOverP = -8.51379e-05 | |
TeslaReportAlgo DEBUG 6#Track.chi2PerDoF = 0.779119 | |
TeslaReportAlgo DEBUG 7#Track.nDoF = 32 | |
TeslaReportAlgo DEBUG 8#Track.Likelihood = 999 | |
TeslaReportAlgo DEBUG 9#Track.GhostProb = 999 | |
TeslaReportAlgo DEBUG MatchVeloMuon = 1 | |
TeslaReportAlgo DEBUG PatForwardTool/LooseForward = 1 | |
TeslaReportAlgo DEBUG Track #chi^{2}/DoF = 0.779119 | |
TeslaReportAlgo DEBUG Track extra for Rep v2, adding last state | |
TeslaReportAlgo DEBUG Track details added | |
TeslaReportAlgo DEBUG Available information (proto) | |
TeslaReportAlgo DEBUG 0#Proto.extraInfo.IsPhoton = -1000 | |
TeslaReportAlgo DEBUG Proto isPhoton = -1000 | |
TeslaReportAlgo DEBUG ProtoParticle details added | |
TeslaReportAlgo DEBUG Available information (muon) | |
TeslaReportAlgo DEBUG 0#Muon.MuonLLMu = -0.399732 | |
TeslaReportAlgo DEBUG 1#Muon.MuonLLBg = -3.81206 | |
TeslaReportAlgo DEBUG 2#Muon.NShared = 0 | |
TeslaReportAlgo DEBUG 3#Muon.Status = 31 | |
TeslaReportAlgo DEBUG 4#Muon.IsMuon = 1 | |
TeslaReportAlgo DEBUG 5#Muon.IsMuonLoose = 1 | |
TeslaReportAlgo DEBUG 6#Muon.IsMuonTight = 1 | |
TeslaReportAlgo DEBUG Muon LLMu = -0.399732 | |
TeslaReportAlgo DEBUG MuonPID details added | |
TeslaReportAlgo DEBUG Available information (track) | |
TeslaReportAlgo DEBUG 0#Track.firstState.z = 9450 | |
TeslaReportAlgo DEBUG 1#Track.firstState.x = -587.201 | |
TeslaReportAlgo DEBUG 10#Track.flags = 167 | |
TeslaReportAlgo DEBUG 11#Track.lastState.z = 9450 | |
TeslaReportAlgo DEBUG 12#Track.lastState.x = -587.201 | |
TeslaReportAlgo DEBUG 13#Track.lastState.y = 1170.7 | |
TeslaReportAlgo DEBUG 14#Track.lastState.tx = -0.000586607 | |
TeslaReportAlgo DEBUG 15#Track.lastState.ty = 0.12221 | |
TeslaReportAlgo DEBUG 16#Track.lastState.qOverP = -8.5436e-05 | |
TeslaReportAlgo DEBUG 2#Track.firstState.y = 1170.7 | |
TeslaReportAlgo DEBUG 3#Track.firstState.tx = -0.000586607 | |
TeslaReportAlgo DEBUG 4#Track.firstState.ty = 0.12221 | |
TeslaReportAlgo DEBUG 5#Track.firstState.qOverP = -8.5436e-05 | |
TeslaReportAlgo DEBUG 6#Track.chi2PerDoF = 0 | |
TeslaReportAlgo DEBUG 7#Track.nDoF = 0 | |
TeslaReportAlgo DEBUG 8#Track.Likelihood = 999 | |
TeslaReportAlgo DEBUG 9#Track.GhostProb = 999 | |
TeslaReportAlgo DEBUG Track #chi^{2}/DoF = 0 | |
TeslaReportAlgo DEBUG Track extra for Rep v2, adding last state | |
TeslaReportAlgo DEBUG Track details added | |
TeslaReportAlgo DEBUG Starting to tie pieces together | |
TeslaReportAlgo DEBUG Pieces tied together | |
TeslaReportAlgo DEBUG Daughter level 1 CLASS ID = 802 | |
TeslaReportAlgo DEBUG Available information (vertex) | |
TeslaReportAlgo DEBUG 0#Vertex.chi2 = 0.212879 | |
TeslaReportAlgo DEBUG 1#Vertex.ndf = 1 | |
TeslaReportAlgo DEBUG 10#Vertex.cov20 = -0.00429122 | |
TeslaReportAlgo DEBUG 11#Vertex.cov21 = 0.004087 | |
TeslaReportAlgo DEBUG 2#Vertex.position.x = -0.0012142 | |
TeslaReportAlgo DEBUG 3#Vertex.position.y = -0.0469519 | |
TeslaReportAlgo DEBUG 4#Vertex.position.z = -53.1553 | |
TeslaReportAlgo DEBUG 5#Vertex.technique = 0 | |
TeslaReportAlgo DEBUG 6#Vertex.cov00 = 0.000717349 | |
TeslaReportAlgo DEBUG 7#Vertex.cov11 = 0.000657983 | |
TeslaReportAlgo DEBUG 8#Vertex.cov22 = 0.0398944 | |
TeslaReportAlgo DEBUG 9#Vertex.cov10 = -0.000344165 | |
TeslaReportAlgo DEBUG Decay vertex chi2 = 0.212879 | |
TeslaReportAlgo DEBUG Setting mother decay vertex | |
TeslaReportAlgo DEBUG End of algorithm execution | |
TeslaReportAlgo DEBUG ==> Execute | |
TeslaReportAlgo... DEBUG SelReports version check requested | |
TeslaReportAlgo... DEBUG The object of type 'LHCb::HltSelReports*' has been retrieved from TS at address 'Hlt2/SelReports' | |
TeslaReportAlgo... DEBUG Examining mother report | |
TeslaReportAlgo... DEBUG Mother report is of a particle | |
TeslaReportAlgo... DEBUG ReportCheckTool finds verision 2 | |
TeslaReportAlgo DEBUG VersionNum = 2 | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Particle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Particles' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::ProtoParticle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Protos' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Vertex,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Vertices' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Track,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Tracks' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::RichPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/RichPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::MuonPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/MuonPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::VertexBase,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Rec/Vertex/Primary' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'LHCb::Relation1D<LHCb::Particle,LHCb::VertexBase>' is registered in TS at address 'Tesla/Particle2VertexRelations' | |
TeslaReportAlgo DEBUG The object of type 'LHCb::HltVertexReports*' has been retrieved from TS at address 'Hlt1/VertexReports' | |
TeslaReportAlgo DEBUG Available vertex reports: | |
TeslaReportAlgo DEBUG PV3D | |
TeslaReportAlgo DEBUG ProtoPV3D | |
TeslaReportAlgo DEBUG Vertex chi2= 44.0503, ndf =51 | |
TeslaReportAlgo DEBUG Vertex key= 0 | |
TeslaReportAlgo DEBUG The object of type 'LHCb::HltSelReports*' has been retrieved from TS at address 'Hlt2/SelReports' | |
TeslaReportAlgo DEBUG Available reports: | |
TeslaReportAlgo DEBUG Hlt2DiMuonDecision | |
TeslaReportAlgo DEBUG Hlt2DiMuonJPsiDecision | |
TeslaReportAlgo DEBUG Hlt2Global | |
TeslaReportAlgo DEBUG Hlt2SingleMuonLowPTDecision | |
TeslaReportAlgo DEBUG Required line has been fired | |
TeslaReportAlgo DEBUG Reference: | |
TeslaReportAlgo DEBUG Particle class ID = 801 | |
TeslaReportAlgo DEBUG Track class ID = 10010 | |
TeslaReportAlgo DEBUG RecVertex class ID = 10030 | |
TeslaReportAlgo DEBUG Vertex class ID = 802 | |
TeslaReportAlgo DEBUG ProtoParticle class ID = 803 | |
TeslaReportAlgo DEBUG { summarizedObjectCLID : 1 numericalInfo : { 0#SelectionID:50201 , } substructure : { 13:801 , } lhcbIDs : { } } | |
TeslaReportAlgo DEBUG MOTHER CLASS ID = 1 | |
TeslaReportAlgo DEBUG LHCbIDs.size() = 0 | |
TeslaReportAlgo DEBUG Number of triggered candidates = 1 | |
TeslaReportAlgo DEBUG [0xb568100] | |
TeslaReportAlgo DEBUG Starting loop over triggered candidates | |
TeslaReportAlgo DEBUG Mother object CLASS ID = 801 | |
TeslaReportAlgo DEBUG Found mother with ID: 443 | |
TeslaReportAlgo DEBUG Mother has substructure consisting of: | |
TeslaReportAlgo DEBUG 801 | |
TeslaReportAlgo DEBUG 801 | |
TeslaReportAlgo DEBUG 802 | |
TeslaReportAlgo DEBUG Available information | |
TeslaReportAlgo DEBUG 0#Particle.particleID.pid = 443 | |
TeslaReportAlgo DEBUG 1#Particle.measuredMass = 3092.12 | |
TeslaReportAlgo DEBUG 10#Particle.momCov00 = 74.7803 | |
TeslaReportAlgo DEBUG 11#Particle.momCov11 = 103.398 | |
TeslaReportAlgo DEBUG 12#Particle.momCov22 = 60517.8 | |
TeslaReportAlgo DEBUG 13#Particle.momCov33 = 60624.3 | |
TeslaReportAlgo DEBUG 14#Particle.momCov10 = -44.9824 | |
TeslaReportAlgo DEBUG 15#Particle.momCov20 = 404.533 | |
TeslaReportAlgo DEBUG 16#Particle.momCov21 = -1817.9 | |
TeslaReportAlgo DEBUG 17#Particle.momCov30 = 407.662 | |
TeslaReportAlgo DEBUG 18#Particle.momCov31 = -1822.1 | |
TeslaReportAlgo DEBUG 19#Particle.momCov32 = 60570.9 | |
TeslaReportAlgo DEBUG 2#Particle.referencePoint.z = -7.81165 | |
TeslaReportAlgo DEBUG 20#Particle.posmomCov00 = -0.196335 | |
TeslaReportAlgo DEBUG 21#Particle.posmomCov11 = -0.179391 | |
TeslaReportAlgo DEBUG 22#Particle.posmomCov22 = -3.27896 | |
TeslaReportAlgo DEBUG 23#Particle.posmomCov10 = 0.0895473 | |
TeslaReportAlgo DEBUG 24#Particle.posmomCov01 = 0.143412 | |
TeslaReportAlgo DEBUG 25#Particle.posmomCov20 = -0.164987 | |
TeslaReportAlgo DEBUG 26#Particle.posmomCov02 = -2.24329 | |
TeslaReportAlgo DEBUG 27#Particle.posmomCov21 = 0.240539 | |
TeslaReportAlgo DEBUG 28#Particle.posmomCov12 = 1.65796 | |
TeslaReportAlgo DEBUG 29#Particle.posmomCov30 = -0.166466 | |
TeslaReportAlgo DEBUG 3#Particle.referencePoint.x = 0.0235429 | |
TeslaReportAlgo DEBUG 30#Particle.posmomCov31 = 0.243683 | |
TeslaReportAlgo DEBUG 31#Particle.posmomCov32 = -3.27928 | |
TeslaReportAlgo DEBUG 32#Particle.posCov00 = 0.00139952 | |
TeslaReportAlgo DEBUG 33#Particle.posCov11 = 0.00159918 | |
TeslaReportAlgo DEBUG 34#Particle.posCov22 = 0.30172 | |
TeslaReportAlgo DEBUG 35#Particle.posCov10 = -0.00122543 | |
TeslaReportAlgo DEBUG 36#Particle.posCov20 = 0.0189112 | |
TeslaReportAlgo DEBUG 37#Particle.posCov21 = -0.0203184 | |
TeslaReportAlgo DEBUG 4#Particle.referencePoint.y = -0.0214158 | |
TeslaReportAlgo DEBUG 5#Particle.slopes.x = 0.0164122 | |
TeslaReportAlgo DEBUG 6#Particle.slopes.y = -0.0363278 | |
TeslaReportAlgo DEBUG 7#Particle.1/p = 1.23506e-05 | |
TeslaReportAlgo DEBUG 8#Particle.conflevel = -1 | |
TeslaReportAlgo DEBUG 9#Particle.massErr = 10.2705 | |
TeslaReportAlgo DEBUG p = 80967.5 | |
TeslaReportAlgo DEBUG p (par_mom) = 80967.5 | |
TeslaReportAlgo DEBUG pT (par_mom) = 3225.06 | |
TeslaReportAlgo DEBUG Particle measured mass = 3092.12 | |
TeslaReportAlgo DEBUG Particle CL = -1 | |
TeslaReportAlgo DEBUG Daughter level 1 CLASS ID = 801 | |
TeslaReportAlgo DEBUG 1st Gen. Daughter ID: -13 | |
TeslaReportAlgo DEBUG Basic daughter level 1 has substructure consisting of: | |
TeslaReportAlgo DEBUG 10010 | |
TeslaReportAlgo DEBUG 803 | |
TeslaReportAlgo DEBUG 11050 | |
TeslaReportAlgo DEBUG 10010 | |
TeslaReportAlgo DEBUG Available information | |
TeslaReportAlgo DEBUG 0#Particle.particleID.pid = -13 | |
TeslaReportAlgo DEBUG 1#Particle.measuredMass = 105.658 | |
TeslaReportAlgo DEBUG 10#Particle.momCov00 = 40.3863 | |
TeslaReportAlgo DEBUG 11#Particle.momCov11 = 66.5654 | |
TeslaReportAlgo DEBUG 12#Particle.momCov22 = 52628 | |
TeslaReportAlgo DEBUG 13#Particle.momCov33 = 52656.8 | |
TeslaReportAlgo DEBUG 14#Particle.momCov10 = 3.0733 | |
TeslaReportAlgo DEBUG 15#Particle.momCov20 = -112.547 | |
TeslaReportAlgo DEBUG 16#Particle.momCov21 = -1228.43 | |
TeslaReportAlgo DEBUG 17#Particle.momCov30 = -112.697 | |
TeslaReportAlgo DEBUG 18#Particle.momCov31 = -1229.65 | |
TeslaReportAlgo DEBUG 19#Particle.momCov32 = 52642.4 | |
TeslaReportAlgo DEBUG 2#Particle.referencePoint.z = -6.40854 | |
TeslaReportAlgo DEBUG 20#Particle.posmomCov00 = -0.280154 | |
TeslaReportAlgo DEBUG 21#Particle.posmomCov11 = -0.254865 | |
TeslaReportAlgo DEBUG 22#Particle.posmomCov22 = 0 | |
TeslaReportAlgo DEBUG 23#Particle.posmomCov10 = 0.000560511 | |
TeslaReportAlgo DEBUG 24#Particle.posmomCov01 = -0.00580557 | |
TeslaReportAlgo DEBUG 25#Particle.posmomCov20 = -0.310919 | |
TeslaReportAlgo DEBUG 26#Particle.posmomCov02 = 0 | |
TeslaReportAlgo DEBUG 27#Particle.posmomCov21 = -0.00557782 | |
TeslaReportAlgo DEBUG 28#Particle.posmomCov12 = 0 | |
TeslaReportAlgo DEBUG 29#Particle.posmomCov30 = -0.310086 | |
TeslaReportAlgo DEBUG 3#Particle.referencePoint.x = 0.0481985 | |
TeslaReportAlgo DEBUG 30#Particle.posmomCov31 = 0.00038676 | |
TeslaReportAlgo DEBUG 31#Particle.posmomCov32 = 0 | |
TeslaReportAlgo DEBUG 32#Particle.posCov00 = 0.00222171 | |
TeslaReportAlgo DEBUG 33#Particle.posCov11 = 0.00191036 | |
TeslaReportAlgo DEBUG 34#Particle.posCov22 = 0 | |
TeslaReportAlgo DEBUG 35#Particle.posCov10 = 7.92884e-05 | |
TeslaReportAlgo DEBUG 36#Particle.posCov20 = 0 | |
TeslaReportAlgo DEBUG 37#Particle.posCov21 = 0 | |
TeslaReportAlgo DEBUG 4#Particle.referencePoint.y = -0.0191309 | |
TeslaReportAlgo DEBUG 5#Particle.slopes.x = -0.00271153 | |
TeslaReportAlgo DEBUG 6#Particle.slopes.y = -0.0233415 | |
TeslaReportAlgo DEBUG 7#Particle.1/p = 1.68902e-05 | |
TeslaReportAlgo DEBUG 8#Particle.conflevel = 0.250063 | |
TeslaReportAlgo DEBUG 9#Particle.massErr = 0 | |
TeslaReportAlgo DEBUG p = 59206 | |
TeslaReportAlgo DEBUG p (par_mom) = 59206 | |
TeslaReportAlgo DEBUG pT (par_mom) = 1390.87 | |
TeslaReportAlgo DEBUG Particle measured mass = 105.658 | |
TeslaReportAlgo DEBUG Particle CL = 0.250063 | |
TeslaReportAlgo DEBUG Available information (track) | |
TeslaReportAlgo DEBUG 0#Track.firstState.z = -6.40854 | |
TeslaReportAlgo DEBUG 1#Track.firstState.x = 0.0481985 | |
TeslaReportAlgo DEBUG 10#Track.flags = 2.19556e+06 | |
TeslaReportAlgo DEBUG 11#Track.lastState.z = 11900 | |
TeslaReportAlgo DEBUG 12#Track.lastState.x = -172.88 | |
TeslaReportAlgo DEBUG 13#Track.lastState.y = -278.118 | |
TeslaReportAlgo DEBUG 14#Track.lastState.tx = -0.0242226 | |
TeslaReportAlgo DEBUG 15#Track.lastState.ty = -0.0233752 | |
TeslaReportAlgo DEBUG 16#Track.lastState.qOverP = 1.69102e-05 | |
TeslaReportAlgo DEBUG 2#Track.firstState.y = -0.0191309 | |
TeslaReportAlgo DEBUG 3#Track.firstState.tx = -0.00271153 | |
TeslaReportAlgo DEBUG 4#Track.firstState.ty = -0.0233415 | |
TeslaReportAlgo DEBUG 5#Track.firstState.qOverP = 1.68902e-05 | |
TeslaReportAlgo DEBUG 6#Track.chi2PerDoF = 1.13801 | |
TeslaReportAlgo DEBUG 7#Track.nDoF = 38 | |
TeslaReportAlgo DEBUG 8#Track.Likelihood = 999 | |
TeslaReportAlgo DEBUG 9#Track.GhostProb = 999 | |
TeslaReportAlgo DEBUG FastTTValidationTool/ValidateWithTT = 1 | |
TeslaReportAlgo DEBUG MatchVeloMuon = 1 | |
TeslaReportAlgo DEBUG PatForwardTool/LooseForward = 1 | |
TeslaReportAlgo DEBUG PatForwardTool/TightForward = 1 | |
TeslaReportAlgo DEBUG Track #chi^{2}/DoF = 1.13801 | |
TeslaReportAlgo DEBUG Track extra for Rep v2, adding last state | |
TeslaReportAlgo DEBUG Track details added | |
TeslaReportAlgo DEBUG Available information (proto) | |
TeslaReportAlgo DEBUG 0#Proto.extraInfo.IsPhoton = -1000 | |
TeslaReportAlgo DEBUG Proto isPhoton = -1000 | |
TeslaReportAlgo DEBUG ProtoParticle details added | |
TeslaReportAlgo DEBUG Available information (muon) | |
TeslaReportAlgo DEBUG 0#Muon.MuonLLMu = -1.0095 | |
TeslaReportAlgo DEBUG 1#Muon.MuonLLBg = -4.9883 | |
TeslaReportAlgo DEBUG 2#Muon.NShared = 0 | |
TeslaReportAlgo DEBUG 3#Muon.Status = 31 | |
TeslaReportAlgo DEBUG 4#Muon.IsMuon = 1 | |
TeslaReportAlgo DEBUG 5#Muon.IsMuonLoose = 1 | |
TeslaReportAlgo DEBUG 6#Muon.IsMuonTight = 1 | |
TeslaReportAlgo DEBUG Muon LLMu = -1.0095 | |
TeslaReportAlgo DEBUG MuonPID details added | |
TeslaReportAlgo DEBUG Available information (track) | |
TeslaReportAlgo DEBUG 0#Track.firstState.z = 9450 | |
TeslaReportAlgo DEBUG 1#Track.firstState.x = -113.822 | |
TeslaReportAlgo DEBUG 10#Track.flags = 167 | |
TeslaReportAlgo DEBUG 11#Track.lastState.z = 9450 | |
TeslaReportAlgo DEBUG 12#Track.lastState.x = -113.822 | |
TeslaReportAlgo DEBUG 13#Track.lastState.y = -220.851 | |
TeslaReportAlgo DEBUG 14#Track.lastState.tx = -0.0238607 | |
TeslaReportAlgo DEBUG 15#Track.lastState.ty = -0.0233731 | |
TeslaReportAlgo DEBUG 16#Track.lastState.qOverP = 1.69066e-05 | |
TeslaReportAlgo DEBUG 2#Track.firstState.y = -220.851 | |
TeslaReportAlgo DEBUG 3#Track.firstState.tx = -0.0238607 | |
TeslaReportAlgo DEBUG 4#Track.firstState.ty = -0.0233731 | |
TeslaReportAlgo DEBUG 5#Track.firstState.qOverP = 1.69066e-05 | |
TeslaReportAlgo DEBUG 6#Track.chi2PerDoF = 0 | |
TeslaReportAlgo DEBUG 7#Track.nDoF = 0 | |
TeslaReportAlgo DEBUG 8#Track.Likelihood = 999 | |
TeslaReportAlgo DEBUG 9#Track.GhostProb = 999 | |
TeslaReportAlgo DEBUG Track #chi^{2}/DoF = 0 | |
TeslaReportAlgo DEBUG Track extra for Rep v2, adding last state | |
TeslaReportAlgo DEBUG Track details added | |
TeslaReportAlgo DEBUG Starting to tie pieces together | |
TeslaReportAlgo DEBUG Pieces tied together | |
TeslaReportAlgo DEBUG Daughter level 1 CLASS ID = 801 | |
TeslaReportAlgo DEBUG 1st Gen. Daughter ID: 13 | |
TeslaReportAlgo DEBUG Basic daughter level 1 has substructure consisting of: | |
TeslaReportAlgo DEBUG 10010 | |
TeslaReportAlgo DEBUG 803 | |
TeslaReportAlgo DEBUG 11050 | |
TeslaReportAlgo DEBUG 10010 | |
TeslaReportAlgo DEBUG Available information | |
TeslaReportAlgo DEBUG 0#Particle.particleID.pid = 13 | |
TeslaReportAlgo DEBUG 1#Particle.measuredMass = 105.658 | |
TeslaReportAlgo DEBUG 10#Particle.momCov00 = 42.8668 | |
TeslaReportAlgo DEBUG 11#Particle.momCov11 = 48.7897 | |
TeslaReportAlgo DEBUG 12#Particle.momCov22 = 7915.73 | |
TeslaReportAlgo DEBUG 13#Particle.momCov33 = 7992.65 | |
TeslaReportAlgo DEBUG 14#Particle.momCov10 = -37.9904 | |
TeslaReportAlgo DEBUG 15#Particle.momCov20 = 531.913 | |
TeslaReportAlgo DEBUG 16#Particle.momCov21 = -571.848 | |
TeslaReportAlgo DEBUG 17#Particle.momCov30 = 534.943 | |
TeslaReportAlgo DEBUG 18#Particle.momCov31 = -575.123 | |
TeslaReportAlgo DEBUG 19#Particle.momCov32 = 7954.06 | |
TeslaReportAlgo DEBUG 2#Particle.referencePoint.z = -8.30399 | |
TeslaReportAlgo DEBUG 20#Particle.posmomCov00 = -0.0321291 | |
TeslaReportAlgo DEBUG 21#Particle.posmomCov11 = -0.0426491 | |
TeslaReportAlgo DEBUG 22#Particle.posmomCov22 = 0 | |
TeslaReportAlgo DEBUG 23#Particle.posmomCov10 = -0.0109973 | |
TeslaReportAlgo DEBUG 24#Particle.posmomCov01 = -0.00302726 | |
TeslaReportAlgo DEBUG 25#Particle.posmomCov20 = 0.0786036 | |
TeslaReportAlgo DEBUG 26#Particle.posmomCov02 = 0 | |
TeslaReportAlgo DEBUG 27#Particle.posmomCov21 = 0.0308638 | |
TeslaReportAlgo DEBUG 28#Particle.posmomCov12 = 0 | |
TeslaReportAlgo DEBUG 29#Particle.posmomCov30 = 0.0768178 | |
TeslaReportAlgo DEBUG 3#Particle.referencePoint.x = -0.014074 | |
TeslaReportAlgo DEBUG 30#Particle.posmomCov31 = 0.0335584 | |
TeslaReportAlgo DEBUG 31#Particle.posmomCov32 = 0 | |
TeslaReportAlgo DEBUG 32#Particle.posCov00 = 0.000239795 | |
TeslaReportAlgo DEBUG 33#Particle.posCov11 = 0.000265193 | |
TeslaReportAlgo DEBUG 34#Particle.posCov22 = 0 | |
TeslaReportAlgo DEBUG 35#Particle.posCov10 = 5.95154e-05 | |
TeslaReportAlgo DEBUG 36#Particle.posCov20 = 0 | |
TeslaReportAlgo DEBUG 37#Particle.posCov21 = 0 | |
TeslaReportAlgo DEBUG 4#Particle.referencePoint.y = 0.00860471 | |
TeslaReportAlgo DEBUG 5#Particle.slopes.x = 0.0684176 | |
TeslaReportAlgo DEBUG 6#Particle.slopes.y = -0.0719129 | |
TeslaReportAlgo DEBUG 7#Particle.1/p = 4.58402e-05 | |
TeslaReportAlgo DEBUG 8#Particle.conflevel = 0.250063 | |
TeslaReportAlgo DEBUG 9#Particle.massErr = 0 | |
TeslaReportAlgo DEBUG p = 21814.9 | |
TeslaReportAlgo DEBUG p (par_mom) = 21814.9 | |
TeslaReportAlgo DEBUG pT (par_mom) = 2154.75 | |
TeslaReportAlgo DEBUG Particle measured mass = 105.658 | |
TeslaReportAlgo DEBUG Particle CL = 0.250063 | |
TeslaReportAlgo DEBUG Available information (track) | |
TeslaReportAlgo DEBUG 0#Track.firstState.z = -8.30399 | |
TeslaReportAlgo DEBUG 1#Track.firstState.x = -0.014074 | |
TeslaReportAlgo DEBUG 10#Track.flags = 2.19556e+06 | |
TeslaReportAlgo DEBUG 11#Track.lastState.z = 11900 | |
TeslaReportAlgo DEBUG 12#Track.lastState.x = 1204.63 | |
TeslaReportAlgo DEBUG 13#Track.lastState.y = -857.583 | |
TeslaReportAlgo DEBUG 14#Track.lastState.tx = 0.12783 | |
TeslaReportAlgo DEBUG 15#Track.lastState.ty = -0.0719288 | |
TeslaReportAlgo DEBUG 16#Track.lastState.qOverP = -4.59488e-05 | |
TeslaReportAlgo DEBUG 2#Track.firstState.y = 0.00860471 | |
TeslaReportAlgo DEBUG 3#Track.firstState.tx = 0.0684176 | |
TeslaReportAlgo DEBUG 4#Track.firstState.ty = -0.0719129 | |
TeslaReportAlgo DEBUG 5#Track.firstState.qOverP = -4.58402e-05 | |
TeslaReportAlgo DEBUG 6#Track.chi2PerDoF = 0.995074 | |
TeslaReportAlgo DEBUG 7#Track.nDoF = 31 | |
TeslaReportAlgo DEBUG 8#Track.Likelihood = 999 | |
TeslaReportAlgo DEBUG 9#Track.GhostProb = 999 | |
TeslaReportAlgo DEBUG MatchVeloMuon = 1 | |
TeslaReportAlgo DEBUG PatForwardTool/LooseForward = 1 | |
TeslaReportAlgo DEBUG Track #chi^{2}/DoF = 0.995074 | |
TeslaReportAlgo DEBUG Track extra for Rep v2, adding last state | |
TeslaReportAlgo DEBUG Track details added | |
TeslaReportAlgo DEBUG Available information (proto) | |
TeslaReportAlgo DEBUG 0#Proto.extraInfo.IsPhoton = -1000 | |
TeslaReportAlgo DEBUG Proto isPhoton = -1000 | |
TeslaReportAlgo DEBUG ProtoParticle details added | |
TeslaReportAlgo DEBUG Available information (muon) | |
TeslaReportAlgo DEBUG 0#Muon.MuonLLMu = -1.43339 | |
TeslaReportAlgo DEBUG 1#Muon.MuonLLBg = -5.39951 | |
TeslaReportAlgo DEBUG 2#Muon.NShared = 0 | |
TeslaReportAlgo DEBUG 3#Muon.Status = 31 | |
TeslaReportAlgo DEBUG 4#Muon.IsMuon = 1 | |
TeslaReportAlgo DEBUG 5#Muon.IsMuonLoose = 1 | |
TeslaReportAlgo DEBUG 6#Muon.IsMuonTight = 1 | |
TeslaReportAlgo DEBUG Muon LLMu = -1.43339 | |
TeslaReportAlgo DEBUG MuonPID details added | |
TeslaReportAlgo DEBUG Available information (track) | |
TeslaReportAlgo DEBUG 0#Track.firstState.z = 9450 | |
TeslaReportAlgo DEBUG 1#Track.firstState.x = 892.101 | |
TeslaReportAlgo DEBUG 10#Track.flags = 167 | |
TeslaReportAlgo DEBUG 11#Track.lastState.z = 9450 | |
TeslaReportAlgo DEBUG 12#Track.lastState.x = 892.101 | |
TeslaReportAlgo DEBUG 13#Track.lastState.y = -681.385 | |
TeslaReportAlgo DEBUG 14#Track.lastState.tx = 0.126992 | |
TeslaReportAlgo DEBUG 15#Track.lastState.ty = -0.071909 | |
TeslaReportAlgo DEBUG 16#Track.lastState.qOverP = -4.59235e-05 | |
TeslaReportAlgo DEBUG 2#Track.firstState.y = -681.385 | |
TeslaReportAlgo DEBUG 3#Track.firstState.tx = 0.126992 | |
TeslaReportAlgo DEBUG 4#Track.firstState.ty = -0.071909 | |
TeslaReportAlgo DEBUG 5#Track.firstState.qOverP = -4.59235e-05 | |
TeslaReportAlgo DEBUG 6#Track.chi2PerDoF = 0 | |
TeslaReportAlgo DEBUG 7#Track.nDoF = 0 | |
TeslaReportAlgo DEBUG 8#Track.Likelihood = 999 | |
TeslaReportAlgo DEBUG 9#Track.GhostProb = 999 | |
TeslaReportAlgo DEBUG Track #chi^{2}/DoF = 0 | |
TeslaReportAlgo DEBUG Track extra for Rep v2, adding last state | |
TeslaReportAlgo DEBUG Track details added | |
TeslaReportAlgo DEBUG Starting to tie pieces together | |
TeslaReportAlgo DEBUG Pieces tied together | |
TeslaReportAlgo DEBUG Daughter level 1 CLASS ID = 802 | |
TeslaReportAlgo DEBUG Available information (vertex) | |
TeslaReportAlgo DEBUG 0#Vertex.chi2 = 1.10841 | |
TeslaReportAlgo DEBUG 1#Vertex.ndf = 1 | |
TeslaReportAlgo DEBUG 10#Vertex.cov20 = 0.0189112 | |
TeslaReportAlgo DEBUG 11#Vertex.cov21 = -0.0203184 | |
TeslaReportAlgo DEBUG 2#Vertex.position.x = 0.0235429 | |
TeslaReportAlgo DEBUG 3#Vertex.position.y = -0.0214158 | |
TeslaReportAlgo DEBUG 4#Vertex.position.z = -7.81165 | |
TeslaReportAlgo DEBUG 5#Vertex.technique = 0 | |
TeslaReportAlgo DEBUG 6#Vertex.cov00 = 0.00139952 | |
TeslaReportAlgo DEBUG 7#Vertex.cov11 = 0.00159918 | |
TeslaReportAlgo DEBUG 8#Vertex.cov22 = 0.30172 | |
TeslaReportAlgo DEBUG 9#Vertex.cov10 = -0.00122543 | |
TeslaReportAlgo DEBUG Decay vertex chi2 = 1.10841 | |
TeslaReportAlgo DEBUG Setting mother decay vertex | |
TeslaReportAlgo DEBUG End of algorithm execution | |
EventSelector SUCCESS Reading Event record 11. Record number within stream 1: 11 | |
TeslaReportAlgo DEBUG ==> Execute | |
TeslaReportAlgo... DEBUG SelReports version check requested | |
Hlt2SelReportsD...WARNING HltSelReportsDecoder:: No appropriate HltSelReports RawBank in RawEvent. Quiting. | |
TeslaReportAlgo...WARNING Sel. reports do not exist!!! | |
TeslaReportAlgo DEBUG VersionNum = 0 | |
TeslaReportAlgo WARNING Requested version number does not equal checker response | |
TeslaReportAlgo DEBUG versionNum = 0, m_ReportVersion = 2 | |
TeslaReportAlgo WARNING For your own safety, I will give you less information than requested, please check report generation | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Particle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Particles' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::ProtoParticle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Protos' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Vertex,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Vertices' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Track,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Tracks' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::RichPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/RichPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::MuonPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/MuonPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::VertexBase,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Rec/Vertex/Primary' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'LHCb::Relation1D<LHCb::Particle,LHCb::VertexBase>' is registered in TS at address 'Tesla/Particle2VertexRelations' | |
TeslaReportAlgo DEBUG The object of type 'LHCb::HltVertexReports*' has been retrieved from TS at address 'Hlt1/VertexReports' | |
TeslaReportAlgo DEBUG Available vertex reports: | |
TeslaReportAlgo DEBUG PV3D | |
TeslaReportAlgo DEBUG ProtoPV3D | |
TeslaReportAlgo DEBUG Vertex chi2= 88.3969, ndf =97 | |
TeslaReportAlgo DEBUG Vertex key= 0 | |
TeslaReportAlgo DEBUG Vertex chi2= 49.1721, ndf =61 | |
TeslaReportAlgo DEBUG Vertex key= 1 | |
TeslaReportAlgo DEBUG Vertex chi2= 13.7327, ndf =23 | |
TeslaReportAlgo DEBUG Vertex key= 2 | |
Hlt2SelReportsD...WARNING HltSelReportsDecoder:: No appropriate HltSelReports RawBank in RawEvent. Quiting. | |
TeslaReportAlgo WARNING Sel. reports do not exist!!! | |
TeslaReportAlgo DEBUG ==> Execute | |
TeslaReportAlgo... DEBUG SelReports version check requested | |
TeslaReportAlgo... DEBUG The object of type 'LHCb::HltSelReports*' has been retrieved from TS at address 'Hlt2/SelReports' | |
TeslaReportAlgo... DEBUG Examining mother report | |
TeslaReportAlgo... DEBUG Mother report is of a particle | |
TeslaReportAlgo... DEBUG ReportCheckTool finds verision 2 | |
TeslaReportAlgo DEBUG VersionNum = 2 | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Particle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Particles' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::ProtoParticle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Protos' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Vertex,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Vertices' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Track,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Tracks' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::RichPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/RichPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::MuonPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/MuonPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::VertexBase,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Rec/Vertex/Primary' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'LHCb::Relation1D<LHCb::Particle,LHCb::VertexBase>' is registered in TS at address 'Tesla/Particle2VertexRelations' | |
TeslaReportAlgo DEBUG The object of type 'LHCb::HltVertexReports*' has been retrieved from TS at address 'Hlt1/VertexReports' | |
TeslaReportAlgo DEBUG Available vertex reports: | |
TeslaReportAlgo DEBUG PV3D | |
TeslaReportAlgo DEBUG ProtoPV3D | |
TeslaReportAlgo DEBUG Vertex chi2= 65.2294, ndf =95 | |
TeslaReportAlgo DEBUG Vertex key= 0 | |
TeslaReportAlgo DEBUG Vertex chi2= 54.9422, ndf =75 | |
TeslaReportAlgo DEBUG Vertex key= 1 | |
TeslaReportAlgo DEBUG The object of type 'LHCb::HltSelReports*' has been retrieved from TS at address 'Hlt2/SelReports' | |
TeslaReportAlgo DEBUG Available reports: | |
TeslaReportAlgo DEBUG Hlt2DiMuonDecision | |
TeslaReportAlgo DEBUG Hlt2DiMuonJPsiDecision | |
TeslaReportAlgo DEBUG Hlt2Global | |
TeslaReportAlgo DEBUG Hlt2SingleMuonLowPTDecision | |
TeslaReportAlgo DEBUG Required line has been fired | |
TeslaReportAlgo DEBUG Reference: | |
TeslaReportAlgo DEBUG Particle class ID = 801 | |
TeslaReportAlgo DEBUG Track class ID = 10010 | |
TeslaReportAlgo DEBUG RecVertex class ID = 10030 | |
TeslaReportAlgo DEBUG Vertex class ID = 802 | |
TeslaReportAlgo DEBUG ProtoParticle class ID = 803 | |
TeslaReportAlgo DEBUG { summarizedObjectCLID : 1 numericalInfo : { 0#SelectionID:50201 , } substructure : { 13:801 , } lhcbIDs : { } } | |
TeslaReportAlgo DEBUG MOTHER CLASS ID = 1 | |
TeslaReportAlgo DEBUG LHCbIDs.size() = 0 | |
TeslaReportAlgo DEBUG Number of triggered candidates = 1 | |
TeslaReportAlgo DEBUG [0xb568e80] | |
TeslaReportAlgo DEBUG Starting loop over triggered candidates | |
TeslaReportAlgo DEBUG Mother object CLASS ID = 801 | |
TeslaReportAlgo DEBUG Found mother with ID: 443 | |
TeslaReportAlgo DEBUG Mother has substructure consisting of: | |
TeslaReportAlgo DEBUG 801 | |
TeslaReportAlgo DEBUG 801 | |
TeslaReportAlgo DEBUG 802 | |
TeslaReportAlgo DEBUG Available information | |
TeslaReportAlgo DEBUG 0#Particle.particleID.pid = 443 | |
TeslaReportAlgo DEBUG 1#Particle.measuredMass = 3075.93 | |
TeslaReportAlgo DEBUG 10#Particle.momCov00 = 88.3854 | |
TeslaReportAlgo DEBUG 11#Particle.momCov11 = 26.7248 | |
TeslaReportAlgo DEBUG 12#Particle.momCov22 = 25783.3 | |
TeslaReportAlgo DEBUG 13#Particle.momCov33 = 25853.5 | |
TeslaReportAlgo DEBUG 14#Particle.momCov10 = -17.318 | |
TeslaReportAlgo DEBUG 15#Particle.momCov20 = 696.974 | |
TeslaReportAlgo DEBUG 16#Particle.momCov21 = -178.325 | |
TeslaReportAlgo DEBUG 17#Particle.momCov30 = 698.315 | |
TeslaReportAlgo DEBUG 18#Particle.momCov31 = -178.669 | |
TeslaReportAlgo DEBUG 19#Particle.momCov32 = 25818.3 | |
TeslaReportAlgo DEBUG 2#Particle.referencePoint.z = -11.295 | |
TeslaReportAlgo DEBUG 20#Particle.posmomCov00 = -0.0704421 | |
TeslaReportAlgo DEBUG 21#Particle.posmomCov11 = -0.0732164 | |
TeslaReportAlgo DEBUG 22#Particle.posmomCov22 = -1.66404 | |
TeslaReportAlgo DEBUG 23#Particle.posmomCov10 = -0.0022029 | |
TeslaReportAlgo DEBUG 24#Particle.posmomCov01 = -0.00104038 | |
TeslaReportAlgo DEBUG 25#Particle.posmomCov20 = 0.0817038 | |
TeslaReportAlgo DEBUG 26#Particle.posmomCov02 = 0.122775 | |
TeslaReportAlgo DEBUG 27#Particle.posmomCov21 = -0.000530646 | |
TeslaReportAlgo DEBUG 28#Particle.posmomCov12 = -0.0454917 | |
TeslaReportAlgo DEBUG 29#Particle.posmomCov30 = 0.081276 | |
TeslaReportAlgo DEBUG 3#Particle.referencePoint.x = -0.0344436 | |
TeslaReportAlgo DEBUG 30#Particle.posmomCov31 = -0.000353515 | |
TeslaReportAlgo DEBUG 31#Particle.posmomCov32 = -1.59118 | |
TeslaReportAlgo DEBUG 32#Particle.posCov00 = 0.000305248 | |
TeslaReportAlgo DEBUG 33#Particle.posCov11 = 0.000299763 | |
TeslaReportAlgo DEBUG 34#Particle.posCov22 = 0.115406 | |
TeslaReportAlgo DEBUG 35#Particle.posCov10 = 7.61202e-06 | |
TeslaReportAlgo DEBUG 36#Particle.posCov20 = -0.000819204 | |
TeslaReportAlgo DEBUG 37#Particle.posCov21 = 0.000333718 | |
TeslaReportAlgo DEBUG 4#Particle.referencePoint.y = 0.00180468 | |
TeslaReportAlgo DEBUG 5#Particle.slopes.x = 0.0118539 | |
TeslaReportAlgo DEBUG 6#Particle.slopes.y = -0.0027531 | |
TeslaReportAlgo DEBUG 7#Particle.1/p = 1.65028e-05 | |
TeslaReportAlgo DEBUG 8#Particle.conflevel = -1 | |
TeslaReportAlgo DEBUG 9#Particle.massErr = 8.99873 | |
TeslaReportAlgo DEBUG p = 60595.8 | |
TeslaReportAlgo DEBUG p (par_mom) = 60595.8 | |
TeslaReportAlgo DEBUG pT (par_mom) = 737.358 | |
TeslaReportAlgo DEBUG Particle measured mass = 3075.93 | |
TeslaReportAlgo DEBUG Particle CL = -1 | |
TeslaReportAlgo DEBUG Daughter level 1 CLASS ID = 801 | |
TeslaReportAlgo DEBUG 1st Gen. Daughter ID: -13 | |
TeslaReportAlgo DEBUG Basic daughter level 1 has substructure consisting of: | |
TeslaReportAlgo DEBUG 10010 | |
TeslaReportAlgo DEBUG 803 | |
TeslaReportAlgo DEBUG 11050 | |
TeslaReportAlgo DEBUG 10010 | |
TeslaReportAlgo DEBUG Available information | |
TeslaReportAlgo DEBUG 0#Particle.particleID.pid = -13 | |
TeslaReportAlgo DEBUG 1#Particle.measuredMass = 105.658 | |
TeslaReportAlgo DEBUG 10#Particle.momCov00 = 23.3309 | |
TeslaReportAlgo DEBUG 11#Particle.momCov11 = 10.2972 | |
TeslaReportAlgo DEBUG 12#Particle.momCov22 = 6422.91 | |
TeslaReportAlgo DEBUG 13#Particle.momCov33 = 6438.13 | |
TeslaReportAlgo DEBUG 14#Particle.momCov10 = -3.71659 | |
TeslaReportAlgo DEBUG 15#Particle.momCov20 = -302.451 | |
TeslaReportAlgo DEBUG 16#Particle.momCov21 = 83.3003 | |
TeslaReportAlgo DEBUG 17#Particle.momCov30 = -303.234 | |
TeslaReportAlgo DEBUG 18#Particle.momCov31 = 83.5087 | |
TeslaReportAlgo DEBUG 19#Particle.momCov32 = 6430.5 | |
TeslaReportAlgo DEBUG 2#Particle.referencePoint.z = -12.0447 | |
TeslaReportAlgo DEBUG 20#Particle.posmomCov00 = -0.0648413 | |
TeslaReportAlgo DEBUG 21#Particle.posmomCov11 = -0.0659772 | |
TeslaReportAlgo DEBUG 22#Particle.posmomCov22 = 0 | |
TeslaReportAlgo DEBUG 23#Particle.posmomCov10 = -0.00222235 | |
TeslaReportAlgo DEBUG 24#Particle.posmomCov01 = -0.00233974 | |
TeslaReportAlgo DEBUG 25#Particle.posmomCov20 = -0.0031618 | |
TeslaReportAlgo DEBUG 26#Particle.posmomCov02 = 0 | |
TeslaReportAlgo DEBUG 27#Particle.posmomCov21 = 3.01922e-05 | |
TeslaReportAlgo DEBUG 28#Particle.posmomCov12 = 0 | |
TeslaReportAlgo DEBUG 29#Particle.posmomCov30 = -0.000136005 | |
TeslaReportAlgo DEBUG 3#Particle.referencePoint.x = 0.0112099 | |
TeslaReportAlgo DEBUG 30#Particle.posmomCov31 = -0.000715694 | |
TeslaReportAlgo DEBUG 31#Particle.posmomCov32 = -0 | |
TeslaReportAlgo DEBUG 32#Particle.posCov00 = 0.000507852 | |
TeslaReportAlgo DEBUG 33#Particle.posCov11 = 0.00052355 | |
TeslaReportAlgo DEBUG 34#Particle.posCov22 = 0 | |
TeslaReportAlgo DEBUG 35#Particle.posCov10 = 2.77468e-05 | |
TeslaReportAlgo DEBUG 36#Particle.posCov20 = 0 | |
TeslaReportAlgo DEBUG 37#Particle.posCov21 = 0 | |
TeslaReportAlgo DEBUG 4#Particle.referencePoint.y = 0.0256946 | |
TeslaReportAlgo DEBUG 5#Particle.slopes.x = -0.0471073 | |
TeslaReportAlgo DEBUG 6#Particle.slopes.y = 0.0129888 | |
TeslaReportAlgo DEBUG 7#Particle.1/p = 4.04201e-05 | |
TeslaReportAlgo DEBUG 8#Particle.conflevel = 0.250063 | |
TeslaReportAlgo DEBUG 9#Particle.massErr = 0 | |
TeslaReportAlgo DEBUG p = 24740.2 | |
TeslaReportAlgo DEBUG p (par_mom) = 24740.2 | |
TeslaReportAlgo DEBUG pT (par_mom) = 1207.49 | |
TeslaReportAlgo DEBUG Particle measured mass = 105.658 | |
TeslaReportAlgo DEBUG Particle CL = 0.250063 | |
TeslaReportAlgo DEBUG Available information (track) | |
TeslaReportAlgo DEBUG 0#Track.firstState.z = -12.0447 | |
TeslaReportAlgo DEBUG 1#Track.firstState.x = 0.0112099 | |
TeslaReportAlgo DEBUG 10#Track.flags = 2.19556e+06 | |
TeslaReportAlgo DEBUG 11#Track.lastState.z = 11900 | |
TeslaReportAlgo DEBUG 12#Track.lastState.x = -893.178 | |
TeslaReportAlgo DEBUG 13#Track.lastState.y = 151.616 | |
TeslaReportAlgo DEBUG 14#Track.lastState.tx = -0.0983807 | |
TeslaReportAlgo DEBUG 15#Track.lastState.ty = 0.0126432 | |
TeslaReportAlgo DEBUG 16#Track.lastState.qOverP = 4.05115e-05 | |
TeslaReportAlgo DEBUG 2#Track.firstState.y = 0.0256946 | |
TeslaReportAlgo DEBUG 3#Track.firstState.tx = -0.0471073 | |
TeslaReportAlgo DEBUG 4#Track.firstState.ty = 0.0129888 | |
TeslaReportAlgo DEBUG 5#Track.firstState.qOverP = 4.04201e-05 | |
TeslaReportAlgo DEBUG 6#Track.chi2PerDoF = 0.994487 | |
TeslaReportAlgo DEBUG 7#Track.nDoF = 44 | |
TeslaReportAlgo DEBUG 8#Track.Likelihood = 999 | |
TeslaReportAlgo DEBUG 9#Track.GhostProb = 999 | |
TeslaReportAlgo DEBUG FastTTValidationTool/ValidateWithTT = 1 | |
TeslaReportAlgo DEBUG MatchVeloMuon = 1 | |
TeslaReportAlgo DEBUG PatForwardTool/LooseForward = 1 | |
TeslaReportAlgo DEBUG PatForwardTool/TightForward = 0 | |
TeslaReportAlgo DEBUG Track #chi^{2}/DoF = 0.994487 | |
TeslaReportAlgo DEBUG Track extra for Rep v2, adding last state | |
TeslaReportAlgo DEBUG Track details added | |
TeslaReportAlgo DEBUG Available information (proto) | |
TeslaReportAlgo DEBUG 0#Proto.extraInfo.IsPhoton = -1000 | |
TeslaReportAlgo DEBUG Proto isPhoton = -1000 | |
TeslaReportAlgo DEBUG ProtoParticle details added | |
TeslaReportAlgo DEBUG Available information (muon) | |
TeslaReportAlgo DEBUG 0#Muon.MuonLLMu = -1.69718 | |
TeslaReportAlgo DEBUG 1#Muon.MuonLLBg = -5.58621 | |
TeslaReportAlgo DEBUG 2#Muon.NShared = 0 | |
TeslaReportAlgo DEBUG 3#Muon.Status = 31 | |
TeslaReportAlgo DEBUG 4#Muon.IsMuon = 1 | |
TeslaReportAlgo DEBUG 5#Muon.IsMuonLoose = 1 | |
TeslaReportAlgo DEBUG 6#Muon.IsMuonTight = 1 | |
TeslaReportAlgo DEBUG Muon LLMu = -1.69718 | |
TeslaReportAlgo DEBUG MuonPID details added | |
TeslaReportAlgo DEBUG Available information (track) | |
TeslaReportAlgo DEBUG 0#Track.firstState.z = 9450 | |
TeslaReportAlgo DEBUG 1#Track.firstState.x = -652.821 | |
TeslaReportAlgo DEBUG 10#Track.flags = 167 | |
TeslaReportAlgo DEBUG 11#Track.lastState.z = 9450 | |
TeslaReportAlgo DEBUG 12#Track.lastState.x = -652.821 | |
TeslaReportAlgo DEBUG 13#Track.lastState.y = 120.639 | |
TeslaReportAlgo DEBUG 14#Track.lastState.tx = -0.0975221 | |
TeslaReportAlgo DEBUG 15#Track.lastState.ty = 0.0126473 | |
TeslaReportAlgo DEBUG 16#Track.lastState.qOverP = 4.0492e-05 | |
TeslaReportAlgo DEBUG 2#Track.firstState.y = 120.639 | |
TeslaReportAlgo DEBUG 3#Track.firstState.tx = -0.0975221 | |
TeslaReportAlgo DEBUG 4#Track.firstState.ty = 0.0126473 | |
TeslaReportAlgo DEBUG 5#Track.firstState.qOverP = 4.0492e-05 | |
TeslaReportAlgo DEBUG 6#Track.chi2PerDoF = 0 | |
TeslaReportAlgo DEBUG 7#Track.nDoF = 0 | |
TeslaReportAlgo DEBUG 8#Track.Likelihood = 999 | |
TeslaReportAlgo DEBUG 9#Track.GhostProb = 999 | |
TeslaReportAlgo DEBUG Track #chi^{2}/DoF = 0 | |
TeslaReportAlgo DEBUG Track extra for Rep v2, adding last state | |
TeslaReportAlgo DEBUG Track details added | |
TeslaReportAlgo DEBUG Starting to tie pieces together | |
TeslaReportAlgo DEBUG Pieces tied together | |
TeslaReportAlgo DEBUG Daughter level 1 CLASS ID = 801 | |
TeslaReportAlgo DEBUG 1st Gen. Daughter ID: 13 | |
TeslaReportAlgo DEBUG Basic daughter level 1 has substructure consisting of: | |
TeslaReportAlgo DEBUG 10010 | |
TeslaReportAlgo DEBUG 803 | |
TeslaReportAlgo DEBUG 11050 | |
TeslaReportAlgo DEBUG 10010 | |
TeslaReportAlgo DEBUG Available information | |
TeslaReportAlgo DEBUG 0#Particle.particleID.pid = 13 | |
TeslaReportAlgo DEBUG 1#Particle.measuredMass = 105.658 | |
TeslaReportAlgo DEBUG 10#Particle.momCov00 = 65.0549 | |
TeslaReportAlgo DEBUG 11#Particle.momCov11 = 16.6572 | |
TeslaReportAlgo DEBUG 12#Particle.momCov22 = 19362.5 | |
TeslaReportAlgo DEBUG 13#Particle.momCov33 = 19417.5 | |
TeslaReportAlgo DEBUG 14#Particle.momCov10 = -13.5914 | |
TeslaReportAlgo DEBUG 15#Particle.momCov20 = 999.395 | |
TeslaReportAlgo DEBUG 16#Particle.momCov21 = -262.323 | |
TeslaReportAlgo DEBUG 17#Particle.momCov30 = 1001.52 | |
TeslaReportAlgo DEBUG 18#Particle.momCov31 = -262.875 | |
TeslaReportAlgo DEBUG 19#Particle.momCov32 = 19389.9 | |
TeslaReportAlgo DEBUG 2#Particle.referencePoint.z = -10.5965 | |
TeslaReportAlgo DEBUG 20#Particle.posmomCov00 = -0.0767526 | |
TeslaReportAlgo DEBUG 21#Particle.posmomCov11 = -0.0828476 | |
TeslaReportAlgo DEBUG 22#Particle.posmomCov22 = 0 | |
TeslaReportAlgo DEBUG 23#Particle.posmomCov10 = -0.00244449 | |
TeslaReportAlgo DEBUG 24#Particle.posmomCov01 = 0.000220574 | |
TeslaReportAlgo DEBUG 25#Particle.posmomCov20 = 0.176688 | |
TeslaReportAlgo DEBUG 26#Particle.posmomCov02 = 0 | |
TeslaReportAlgo DEBUG 27#Particle.posmomCov21 = 0.00507681 | |
TeslaReportAlgo DEBUG 28#Particle.posmomCov12 = 0 | |
TeslaReportAlgo DEBUG 29#Particle.posmomCov30 = 0.17244 | |
TeslaReportAlgo DEBUG 3#Particle.referencePoint.x = -0.0105667 | |
TeslaReportAlgo DEBUG 30#Particle.posmomCov31 = 0.00620305 | |
TeslaReportAlgo DEBUG 31#Particle.posmomCov32 = 0 | |
TeslaReportAlgo DEBUG 32#Particle.posCov00 = 0.000735692 | |
TeslaReportAlgo DEBUG 33#Particle.posCov11 = 0.000700946 | |
TeslaReportAlgo DEBUG 34#Particle.posCov22 = 0 | |
TeslaReportAlgo DEBUG 35#Particle.posCov10 = 3.07672e-06 | |
TeslaReportAlgo DEBUG 36#Particle.posCov20 = 0 | |
TeslaReportAlgo DEBUG 37#Particle.posCov21 = 0 | |
TeslaReportAlgo DEBUG 4#Particle.referencePoint.y = -0.0526632 | |
TeslaReportAlgo DEBUG 5#Particle.slopes.x = 0.0524663 | |
TeslaReportAlgo DEBUG 6#Particle.slopes.y = -0.0135646 | |
TeslaReportAlgo DEBUG 7#Particle.1/p = 2.7832e-05 | |
TeslaReportAlgo DEBUG 8#Particle.conflevel = 0.250063 | |
TeslaReportAlgo DEBUG 9#Particle.massErr = 0 | |
TeslaReportAlgo DEBUG p = 35929.9 | |
TeslaReportAlgo DEBUG p (par_mom) = 35929.9 | |
TeslaReportAlgo DEBUG pT (par_mom) = 1944.24 | |
TeslaReportAlgo DEBUG Particle measured mass = 105.658 | |
TeslaReportAlgo DEBUG Particle CL = 0.250063 | |
TeslaReportAlgo DEBUG Available information (track) | |
TeslaReportAlgo DEBUG 0#Track.firstState.z = -10.5965 | |
TeslaReportAlgo DEBUG 1#Track.firstState.x = -0.0105667 | |
TeslaReportAlgo DEBUG 10#Track.flags = 2.19556e+06 | |
TeslaReportAlgo DEBUG 11#Track.lastState.z = 11900 | |
TeslaReportAlgo DEBUG 12#Track.lastState.x = 857.797 | |
TeslaReportAlgo DEBUG 13#Track.lastState.y = -158.99 | |
TeslaReportAlgo DEBUG 14#Track.lastState.tx = 0.0881185 | |
TeslaReportAlgo DEBUG 15#Track.lastState.ty = -0.013276 | |
TeslaReportAlgo DEBUG 16#Track.lastState.qOverP = -2.78735e-05 | |
TeslaReportAlgo DEBUG 2#Track.firstState.y = -0.0526632 | |
TeslaReportAlgo DEBUG 3#Track.firstState.tx = 0.0524663 | |
TeslaReportAlgo DEBUG 4#Track.firstState.ty = -0.0135646 | |
TeslaReportAlgo DEBUG 5#Track.firstState.qOverP = -2.7832e-05 | |
TeslaReportAlgo DEBUG 6#Track.chi2PerDoF = 0.920272 | |
TeslaReportAlgo DEBUG 7#Track.nDoF = 32 | |
TeslaReportAlgo DEBUG 8#Track.Likelihood = 999 | |
TeslaReportAlgo DEBUG 9#Track.GhostProb = 999 | |
TeslaReportAlgo DEBUG MatchVeloMuon = 1 | |
TeslaReportAlgo DEBUG PatForwardTool/LooseForward = 1 | |
TeslaReportAlgo DEBUG Track #chi^{2}/DoF = 0.920272 | |
TeslaReportAlgo DEBUG Track extra for Rep v2, adding last state | |
TeslaReportAlgo DEBUG Track details added | |
TeslaReportAlgo DEBUG Available information (proto) | |
TeslaReportAlgo DEBUG 0#Proto.extraInfo.IsPhoton = -1000 | |
TeslaReportAlgo DEBUG Proto isPhoton = -1000 | |
TeslaReportAlgo DEBUG ProtoParticle details added | |
TeslaReportAlgo DEBUG Available information (muon) | |
TeslaReportAlgo DEBUG 0#Muon.MuonLLMu = -0.925584 | |
TeslaReportAlgo DEBUG 1#Muon.MuonLLBg = -5.14615 | |
TeslaReportAlgo DEBUG 2#Muon.NShared = 0 | |
TeslaReportAlgo DEBUG 3#Muon.Status = 31 | |
TeslaReportAlgo DEBUG 4#Muon.IsMuon = 1 | |
TeslaReportAlgo DEBUG 5#Muon.IsMuonLoose = 1 | |
TeslaReportAlgo DEBUG 6#Muon.IsMuonTight = 1 | |
TeslaReportAlgo DEBUG Muon LLMu = -0.925584 | |
TeslaReportAlgo DEBUG MuonPID details added | |
TeslaReportAlgo DEBUG Available information (track) | |
TeslaReportAlgo DEBUG 0#Track.firstState.z = 9450 | |
TeslaReportAlgo DEBUG 1#Track.firstState.x = 642.371 | |
TeslaReportAlgo DEBUG 10#Track.flags = 167 | |
TeslaReportAlgo DEBUG 11#Track.lastState.z = 9450 | |
TeslaReportAlgo DEBUG 12#Track.lastState.x = 642.371 | |
TeslaReportAlgo DEBUG 13#Track.lastState.y = -126.464 | |
TeslaReportAlgo DEBUG 14#Track.lastState.tx = 0.0875295 | |
TeslaReportAlgo DEBUG 15#Track.lastState.ty = -0.0132779 | |
TeslaReportAlgo DEBUG 16#Track.lastState.qOverP = -2.78638e-05 | |
TeslaReportAlgo DEBUG 2#Track.firstState.y = -126.464 | |
TeslaReportAlgo DEBUG 3#Track.firstState.tx = 0.0875295 | |
TeslaReportAlgo DEBUG 4#Track.firstState.ty = -0.0132779 | |
TeslaReportAlgo DEBUG 5#Track.firstState.qOverP = -2.78638e-05 | |
TeslaReportAlgo DEBUG 6#Track.chi2PerDoF = 0 | |
TeslaReportAlgo DEBUG 7#Track.nDoF = 0 | |
TeslaReportAlgo DEBUG 8#Track.Likelihood = 999 | |
TeslaReportAlgo DEBUG 9#Track.GhostProb = 999 | |
TeslaReportAlgo DEBUG Track #chi^{2}/DoF = 0 | |
TeslaReportAlgo DEBUG Track extra for Rep v2, adding last state | |
TeslaReportAlgo DEBUG Track details added | |
TeslaReportAlgo DEBUG Starting to tie pieces together | |
TeslaReportAlgo DEBUG Pieces tied together | |
TeslaReportAlgo DEBUG Daughter level 1 CLASS ID = 802 | |
TeslaReportAlgo DEBUG Available information (vertex) | |
TeslaReportAlgo DEBUG 0#Vertex.chi2 = 5.41076 | |
TeslaReportAlgo DEBUG 1#Vertex.ndf = 1 | |
TeslaReportAlgo DEBUG 10#Vertex.cov20 = -0.000819204 | |
TeslaReportAlgo DEBUG 11#Vertex.cov21 = 0.000333718 | |
TeslaReportAlgo DEBUG 2#Vertex.position.x = -0.0344436 | |
TeslaReportAlgo DEBUG 3#Vertex.position.y = 0.00180468 | |
TeslaReportAlgo DEBUG 4#Vertex.position.z = -11.295 | |
TeslaReportAlgo DEBUG 5#Vertex.technique = 0 | |
TeslaReportAlgo DEBUG 6#Vertex.cov00 = 0.000305248 | |
TeslaReportAlgo DEBUG 7#Vertex.cov11 = 0.000299763 | |
TeslaReportAlgo DEBUG 8#Vertex.cov22 = 0.115406 | |
TeslaReportAlgo DEBUG 9#Vertex.cov10 = 7.61202e-06 | |
TeslaReportAlgo DEBUG Decay vertex chi2 = 5.41076 | |
TeslaReportAlgo DEBUG Setting mother decay vertex | |
TeslaReportAlgo DEBUG End of algorithm execution | |
TeslaReportAlgo DEBUG ==> Execute | |
TeslaReportAlgo... DEBUG SelReports version check requested | |
Hlt2SelReportsD...WARNING HltSelReportsDecoder:: No appropriate HltSelReports RawBank in RawEvent. Quiting. | |
TeslaReportAlgo...WARNING Sel. reports do not exist!!! | |
TeslaReportAlgo DEBUG VersionNum = 0 | |
TeslaReportAlgo WARNING Requested version number does not equal checker response | |
TeslaReportAlgo DEBUG versionNum = 0, m_ReportVersion = 2 | |
TeslaReportAlgo WARNING For your own safety, I will give you less information than requested, please check report generation | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Particle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Particles' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::ProtoParticle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Protos' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Vertex,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Vertices' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Track,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Tracks' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::RichPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/RichPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::MuonPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/MuonPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::VertexBase,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Rec/Vertex/Primary' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'LHCb::Relation1D<LHCb::Particle,LHCb::VertexBase>' is registered in TS at address 'Tesla/Particle2VertexRelations' | |
TeslaReportAlgo DEBUG The object of type 'LHCb::HltVertexReports*' has been retrieved from TS at address 'Hlt1/VertexReports' | |
TeslaReportAlgo DEBUG Available vertex reports: | |
TeslaReportAlgo DEBUG PV3D | |
TeslaReportAlgo DEBUG ProtoPV3D | |
TeslaReportAlgo DEBUG Vertex chi2= 98.2539, ndf =133 | |
TeslaReportAlgo DEBUG Vertex key= 0 | |
TeslaReportAlgo DEBUG Vertex chi2= 40.287, ndf =73 | |
TeslaReportAlgo DEBUG Vertex key= 1 | |
TeslaReportAlgo DEBUG Vertex chi2= 20.6404, ndf =19 | |
TeslaReportAlgo DEBUG Vertex key= 2 | |
Hlt2SelReportsD...WARNING HltSelReportsDecoder:: The WARNING message is suppressed : ' No appropriate HltSelReports RawBank in RawEvent. Quiting. ' | |
TeslaReportAlgo WARNING Sel. reports do not exist!!! | |
TeslaReportAlgo DEBUG ==> Execute | |
TeslaReportAlgo... DEBUG SelReports version check requested | |
TeslaReportAlgo... DEBUG The object of type 'LHCb::HltSelReports*' has been retrieved from TS at address 'Hlt2/SelReports' | |
TeslaReportAlgo DEBUG VersionNum = 99 | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Particle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Particles' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::ProtoParticle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Protos' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Vertex,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Vertices' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Track,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Tracks' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::RichPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/RichPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::MuonPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/MuonPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::VertexBase,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Rec/Vertex/Primary' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'LHCb::Relation1D<LHCb::Particle,LHCb::VertexBase>' is registered in TS at address 'Tesla/Particle2VertexRelations' | |
TeslaReportAlgo DEBUG The object of type 'LHCb::HltVertexReports*' has been retrieved from TS at address 'Hlt1/VertexReports' | |
TeslaReportAlgo DEBUG Available vertex reports: | |
TeslaReportAlgo DEBUG PV3D | |
TeslaReportAlgo DEBUG ProtoPV3D | |
TeslaReportAlgo DEBUG Vertex chi2= 16.5335, ndf =25 | |
TeslaReportAlgo DEBUG Vertex key= 0 | |
TeslaReportAlgo DEBUG Vertex chi2= 3.35542, ndf =19 | |
TeslaReportAlgo DEBUG Vertex key= 1 | |
TeslaReportAlgo DEBUG The object of type 'LHCb::HltSelReports*' has been retrieved from TS at address 'Hlt2/SelReports' | |
TeslaReportAlgo DEBUG Available reports: | |
TeslaReportAlgo DEBUG Hlt2Global | |
TeslaReportAlgo DEBUG Hlt2SingleMuonLowPTDecision | |
TeslaReportAlgo DEBUG End of algorithm execution | |
TeslaReportAlgo DEBUG ==> Execute | |
TeslaReportAlgo... DEBUG SelReports version check requested | |
TeslaReportAlgo... DEBUG The object of type 'LHCb::HltSelReports*' has been retrieved from TS at address 'Hlt2/SelReports' | |
TeslaReportAlgo... DEBUG Examining mother report | |
TeslaReportAlgo... DEBUG Mother report is of a particle | |
TeslaReportAlgo... DEBUG ReportCheckTool finds verision 2 | |
TeslaReportAlgo DEBUG VersionNum = 2 | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Particle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Particles' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::ProtoParticle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Protos' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Vertex,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Vertices' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Track,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Tracks' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::RichPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/RichPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::MuonPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/MuonPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::VertexBase,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Rec/Vertex/Primary' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'LHCb::Relation1D<LHCb::Particle,LHCb::VertexBase>' is registered in TS at address 'Tesla/Particle2VertexRelations' | |
TeslaReportAlgo DEBUG The object of type 'LHCb::HltVertexReports*' has been retrieved from TS at address 'Hlt1/VertexReports' | |
TeslaReportAlgo DEBUG Available vertex reports: | |
TeslaReportAlgo DEBUG PV3D | |
TeslaReportAlgo DEBUG ProtoPV3D | |
TeslaReportAlgo DEBUG Vertex chi2= 15.1645, ndf =27 | |
TeslaReportAlgo DEBUG Vertex key= 0 | |
TeslaReportAlgo DEBUG The object of type 'LHCb::HltSelReports*' has been retrieved from TS at address 'Hlt2/SelReports' | |
TeslaReportAlgo DEBUG Available reports: | |
TeslaReportAlgo DEBUG Hlt2DiMuonDecision | |
TeslaReportAlgo DEBUG Hlt2DiMuonJPsiDecision | |
TeslaReportAlgo DEBUG Hlt2Global | |
TeslaReportAlgo DEBUG Hlt2SingleMuonLowPTDecision | |
TeslaReportAlgo DEBUG Required line has been fired | |
TeslaReportAlgo DEBUG Reference: | |
TeslaReportAlgo DEBUG Particle class ID = 801 | |
TeslaReportAlgo DEBUG Track class ID = 10010 | |
TeslaReportAlgo DEBUG RecVertex class ID = 10030 | |
TeslaReportAlgo DEBUG Vertex class ID = 802 | |
TeslaReportAlgo DEBUG ProtoParticle class ID = 803 | |
TeslaReportAlgo DEBUG { summarizedObjectCLID : 1 numericalInfo : { 0#SelectionID:50201 , } substructure : { 14:801 , } lhcbIDs : { } } | |
TeslaReportAlgo DEBUG MOTHER CLASS ID = 1 | |
TeslaReportAlgo DEBUG LHCbIDs.size() = 0 | |
TeslaReportAlgo DEBUG Number of triggered candidates = 1 | |
TeslaReportAlgo DEBUG [0xb568180] | |
TeslaReportAlgo DEBUG Starting loop over triggered candidates | |
TeslaReportAlgo DEBUG Mother object CLASS ID = 801 | |
TeslaReportAlgo DEBUG Found mother with ID: 443 | |
TeslaReportAlgo DEBUG Mother has substructure consisting of: | |
TeslaReportAlgo DEBUG 801 | |
TeslaReportAlgo DEBUG 801 | |
TeslaReportAlgo DEBUG 802 | |
TeslaReportAlgo DEBUG Available information | |
TeslaReportAlgo DEBUG 0#Particle.particleID.pid = 443 | |
TeslaReportAlgo DEBUG 1#Particle.measuredMass = 3111.52 | |
TeslaReportAlgo DEBUG 10#Particle.momCov00 = 63.6615 | |
TeslaReportAlgo DEBUG 11#Particle.momCov11 = 82.402 | |
TeslaReportAlgo DEBUG 12#Particle.momCov22 = 112292 | |
TeslaReportAlgo DEBUG 13#Particle.momCov33 = 112355 | |
TeslaReportAlgo DEBUG 14#Particle.momCov10 = -12.331 | |
TeslaReportAlgo DEBUG 15#Particle.momCov20 = 230.235 | |
TeslaReportAlgo DEBUG 16#Particle.momCov21 = 2345.62 | |
TeslaReportAlgo DEBUG 17#Particle.momCov30 = 231.14 | |
TeslaReportAlgo DEBUG 18#Particle.momCov31 = 2346.43 | |
TeslaReportAlgo DEBUG 19#Particle.momCov32 = 112323 | |
TeslaReportAlgo DEBUG 2#Particle.referencePoint.z = 11.5579 | |
TeslaReportAlgo DEBUG 20#Particle.posmomCov00 = -0.287603 | |
TeslaReportAlgo DEBUG 21#Particle.posmomCov11 = -0.104064 | |
TeslaReportAlgo DEBUG 22#Particle.posmomCov22 = 4.78391 | |
TeslaReportAlgo DEBUG 23#Particle.posmomCov10 = 0.104199 | |
TeslaReportAlgo DEBUG 24#Particle.posmomCov01 = 0.0397646 | |
TeslaReportAlgo DEBUG 25#Particle.posmomCov20 = 0.506497 | |
TeslaReportAlgo DEBUG 26#Particle.posmomCov02 = -2.42668 | |
TeslaReportAlgo DEBUG 27#Particle.posmomCov21 = -0.0822561 | |
TeslaReportAlgo DEBUG 28#Particle.posmomCov12 = 1.12919 | |
TeslaReportAlgo DEBUG 29#Particle.posmomCov30 = 0.508219 | |
TeslaReportAlgo DEBUG 3#Particle.referencePoint.x = -8.32787e-05 | |
TeslaReportAlgo DEBUG 30#Particle.posmomCov31 = -0.0834219 | |
TeslaReportAlgo DEBUG 31#Particle.posmomCov32 = 4.83612 | |
TeslaReportAlgo DEBUG 32#Particle.posCov00 = 0.00198801 | |
TeslaReportAlgo DEBUG 33#Particle.posCov11 = 0.000408535 | |
TeslaReportAlgo DEBUG 34#Particle.posCov22 = 0.208778 | |
TeslaReportAlgo DEBUG 35#Particle.posCov10 = -0.000308481 | |
TeslaReportAlgo DEBUG 36#Particle.posCov20 = 0.0189731 | |
TeslaReportAlgo DEBUG 37#Particle.posCov21 = -0.00339089 | |
TeslaReportAlgo DEBUG 4#Particle.referencePoint.y = 0.0072396 | |
TeslaReportAlgo DEBUG 5#Particle.slopes.x = 0.0128501 | |
TeslaReportAlgo DEBUG 6#Particle.slopes.y = 0.016437 | |
TeslaReportAlgo DEBUG 7#Particle.1/p = 1.11053e-05 | |
TeslaReportAlgo DEBUG 8#Particle.conflevel = -1 | |
TeslaReportAlgo DEBUG 9#Particle.massErr = 10.4568 | |
TeslaReportAlgo DEBUG p = 90047.4 | |
TeslaReportAlgo DEBUG p (par_mom) = 90047.4 | |
TeslaReportAlgo DEBUG pT (par_mom) = 1878.32 | |
TeslaReportAlgo DEBUG Particle measured mass = 3111.52 | |
TeslaReportAlgo DEBUG Particle CL = -1 | |
TeslaReportAlgo DEBUG Daughter level 1 CLASS ID = 801 | |
TeslaReportAlgo DEBUG 1st Gen. Daughter ID: -13 | |
TeslaReportAlgo DEBUG Basic daughter level 1 has substructure consisting of: | |
TeslaReportAlgo DEBUG 10010 | |
TeslaReportAlgo DEBUG 803 | |
TeslaReportAlgo DEBUG 11050 | |
TeslaReportAlgo DEBUG 10010 | |
TeslaReportAlgo DEBUG Available information | |
TeslaReportAlgo DEBUG 0#Particle.particleID.pid = -13 | |
TeslaReportAlgo DEBUG 1#Particle.measuredMass = 105.658 | |
TeslaReportAlgo DEBUG 10#Particle.momCov00 = 16.2597 | |
TeslaReportAlgo DEBUG 11#Particle.momCov11 = 4.98391 | |
TeslaReportAlgo DEBUG 12#Particle.momCov22 = 1162.2 | |
TeslaReportAlgo DEBUG 13#Particle.momCov33 = 1174.92 | |
TeslaReportAlgo DEBUG 14#Particle.momCov10 = -2.66598 | |
TeslaReportAlgo DEBUG 15#Particle.momCov20 = 119.298 | |
TeslaReportAlgo DEBUG 16#Particle.momCov21 = -25.7247 | |
TeslaReportAlgo DEBUG 17#Particle.momCov30 = 120.359 | |
TeslaReportAlgo DEBUG 18#Particle.momCov31 = -25.9647 | |
TeslaReportAlgo DEBUG 19#Particle.momCov32 = 1168.52 | |
TeslaReportAlgo DEBUG 2#Particle.referencePoint.z = 11.4903 | |
TeslaReportAlgo DEBUG 20#Particle.posmomCov00 = -0.032744 | |
TeslaReportAlgo DEBUG 21#Particle.posmomCov11 = -0.0392943 | |
TeslaReportAlgo DEBUG 22#Particle.posmomCov22 = 0 | |
TeslaReportAlgo DEBUG 23#Particle.posmomCov10 = 6.40932e-05 | |
TeslaReportAlgo DEBUG 24#Particle.posmomCov01 = 0.000153067 | |
TeslaReportAlgo DEBUG 25#Particle.posmomCov20 = 0.00444148 | |
TeslaReportAlgo DEBUG 26#Particle.posmomCov02 = 0 | |
TeslaReportAlgo DEBUG 27#Particle.posmomCov21 = -0.00282814 | |
TeslaReportAlgo DEBUG 28#Particle.posmomCov12 = 0 | |
TeslaReportAlgo DEBUG 29#Particle.posmomCov30 = 0.00105481 | |
TeslaReportAlgo DEBUG 3#Particle.referencePoint.x = -0.00854712 | |
TeslaReportAlgo DEBUG 30#Particle.posmomCov31 = -0.00192964 | |
TeslaReportAlgo DEBUG 31#Particle.posmomCov32 = 0 | |
TeslaReportAlgo DEBUG 32#Particle.posCov00 = 0.000300481 | |
TeslaReportAlgo DEBUG 33#Particle.posCov11 = 0.000407722 | |
TeslaReportAlgo DEBUG 34#Particle.posCov22 = 0 | |
TeslaReportAlgo DEBUG 35#Particle.posCov10 = -1.17516e-06 | |
TeslaReportAlgo DEBUG 36#Particle.posCov20 = 0 | |
TeslaReportAlgo DEBUG 37#Particle.posCov21 = 0 | |
TeslaReportAlgo DEBUG 4#Particle.referencePoint.y = 0.0039752 | |
TeslaReportAlgo DEBUG 5#Particle.slopes.x = 0.103205 | |
TeslaReportAlgo DEBUG 6#Particle.slopes.y = -0.0221883 | |
TeslaReportAlgo DEBUG 7#Particle.1/p = 0.000101192 | |
TeslaReportAlgo DEBUG 8#Particle.conflevel = 0.250063 | |
TeslaReportAlgo DEBUG 9#Particle.massErr = 0 | |
TeslaReportAlgo DEBUG p = 9882.19 | |
TeslaReportAlgo DEBUG p (par_mom) = 9882.19 | |
TeslaReportAlgo DEBUG pT (par_mom) = 1037.43 | |
TeslaReportAlgo DEBUG Particle measured mass = 105.658 | |
TeslaReportAlgo DEBUG Particle CL = 0.250063 | |
TeslaReportAlgo DEBUG Available information (track) | |
TeslaReportAlgo DEBUG 0#Track.firstState.z = 11.4903 | |
TeslaReportAlgo DEBUG 1#Track.firstState.x = -0.00854712 | |
TeslaReportAlgo DEBUG 10#Track.flags = 2.19556e+06 | |
TeslaReportAlgo DEBUG 11#Track.lastState.z = 11900 | |
TeslaReportAlgo DEBUG 12#Track.lastState.x = 382.507 | |
TeslaReportAlgo DEBUG 13#Track.lastState.y = -262.535 | |
TeslaReportAlgo DEBUG 14#Track.lastState.tx = -0.0259409 | |
TeslaReportAlgo DEBUG 15#Track.lastState.ty = -0.0220044 | |
TeslaReportAlgo DEBUG 16#Track.lastState.qOverP = 0.000101682 | |
TeslaReportAlgo DEBUG 2#Track.firstState.y = 0.0039752 | |
TeslaReportAlgo DEBUG 3#Track.firstState.tx = 0.103205 | |
TeslaReportAlgo DEBUG 4#Track.firstState.ty = -0.0221883 | |
TeslaReportAlgo DEBUG 5#Track.firstState.qOverP = 0.000101192 | |
TeslaReportAlgo DEBUG 6#Track.chi2PerDoF = 1.12669 | |
TeslaReportAlgo DEBUG 7#Track.nDoF = 35 | |
TeslaReportAlgo DEBUG 8#Track.Likelihood = 999 | |
TeslaReportAlgo DEBUG 9#Track.GhostProb = 999 | |
TeslaReportAlgo DEBUG MatchVeloMuon = 1 | |
TeslaReportAlgo DEBUG PatForwardTool/LooseForward = 1 | |
TeslaReportAlgo DEBUG Track #chi^{2}/DoF = 1.12669 | |
TeslaReportAlgo DEBUG Track extra for Rep v2, adding last state | |
TeslaReportAlgo DEBUG Track details added | |
TeslaReportAlgo DEBUG Available information (proto) | |
TeslaReportAlgo DEBUG 0#Proto.extraInfo.IsPhoton = -1000 | |
TeslaReportAlgo DEBUG Proto isPhoton = -1000 | |
TeslaReportAlgo DEBUG ProtoParticle details added | |
TeslaReportAlgo DEBUG Available information (muon) | |
TeslaReportAlgo DEBUG 0#Muon.MuonLLMu = -0.870362 | |
TeslaReportAlgo DEBUG 1#Muon.MuonLLBg = -1.02737 | |
TeslaReportAlgo DEBUG 2#Muon.NShared = 0 | |
TeslaReportAlgo DEBUG 3#Muon.Status = 31 | |
TeslaReportAlgo DEBUG 4#Muon.IsMuon = 1 | |
TeslaReportAlgo DEBUG 5#Muon.IsMuonLoose = 1 | |
TeslaReportAlgo DEBUG 6#Muon.IsMuonTight = 1 | |
TeslaReportAlgo DEBUG Muon LLMu = -0.870362 | |
TeslaReportAlgo DEBUG MuonPID details added | |
TeslaReportAlgo DEBUG Available information (track) | |
TeslaReportAlgo DEBUG 0#Track.firstState.z = 9450 | |
TeslaReportAlgo DEBUG 1#Track.firstState.x = 444.351 | |
TeslaReportAlgo DEBUG 10#Track.flags = 167 | |
TeslaReportAlgo DEBUG 11#Track.lastState.z = 9450 | |
TeslaReportAlgo DEBUG 12#Track.lastState.x = 444.351 | |
TeslaReportAlgo DEBUG 13#Track.lastState.y = -208.601 | |
TeslaReportAlgo DEBUG 14#Track.lastState.tx = -0.0237835 | |
TeslaReportAlgo DEBUG 15#Track.lastState.ty = -0.0220291 | |
TeslaReportAlgo DEBUG 16#Track.lastState.qOverP = 0.000101568 | |
TeslaReportAlgo DEBUG 2#Track.firstState.y = -208.601 | |
TeslaReportAlgo DEBUG 3#Track.firstState.tx = -0.0237835 | |
TeslaReportAlgo DEBUG 4#Track.firstState.ty = -0.0220291 | |
TeslaReportAlgo DEBUG 5#Track.firstState.qOverP = 0.000101568 | |
TeslaReportAlgo DEBUG 6#Track.chi2PerDoF = 0 | |
TeslaReportAlgo DEBUG 7#Track.nDoF = 0 | |
TeslaReportAlgo DEBUG 8#Track.Likelihood = 999 | |
TeslaReportAlgo DEBUG 9#Track.GhostProb = 999 | |
TeslaReportAlgo DEBUG Track #chi^{2}/DoF = 0 | |
TeslaReportAlgo DEBUG Track extra for Rep v2, adding last state | |
TeslaReportAlgo DEBUG Track details added | |
TeslaReportAlgo DEBUG Starting to tie pieces together | |
TeslaReportAlgo DEBUG Pieces tied together | |
TeslaReportAlgo DEBUG Daughter level 1 CLASS ID = 801 | |
TeslaReportAlgo DEBUG 1st Gen. Daughter ID: 13 | |
TeslaReportAlgo DEBUG Basic daughter level 1 has substructure consisting of: | |
TeslaReportAlgo DEBUG 10010 | |
TeslaReportAlgo DEBUG 803 | |
TeslaReportAlgo DEBUG 11050 | |
TeslaReportAlgo DEBUG 10010 | |
TeslaReportAlgo DEBUG Available information | |
TeslaReportAlgo DEBUG 0#Particle.particleID.pid = 13 | |
TeslaReportAlgo DEBUG 1#Particle.measuredMass = 105.658 | |
TeslaReportAlgo DEBUG 10#Particle.momCov00 = 51.7733 | |
TeslaReportAlgo DEBUG 11#Particle.momCov11 = 111.51 | |
TeslaReportAlgo DEBUG 12#Particle.momCov22 = 111145 | |
TeslaReportAlgo DEBUG 13#Particle.momCov33 = 111194 | |
TeslaReportAlgo DEBUG 14#Particle.momCov10 = 2.5427 | |
TeslaReportAlgo DEBUG 15#Particle.momCov20 = 102.731 | |
TeslaReportAlgo DEBUG 16#Particle.momCov21 = 2348.43 | |
TeslaReportAlgo DEBUG 17#Particle.momCov30 = 102.852 | |
TeslaReportAlgo DEBUG 18#Particle.momCov31 = 2350.26 | |
TeslaReportAlgo DEBUG 19#Particle.momCov32 = 111170 | |
TeslaReportAlgo DEBUG 2#Particle.referencePoint.z = 10.5441 | |
TeslaReportAlgo DEBUG 20#Particle.posmomCov00 = -0.317868 | |
TeslaReportAlgo DEBUG 21#Particle.posmomCov11 = -0.392089 | |
TeslaReportAlgo DEBUG 22#Particle.posmomCov22 = 0 | |
TeslaReportAlgo DEBUG 23#Particle.posmomCov10 = 0.00760764 | |
TeslaReportAlgo DEBUG 24#Particle.posmomCov01 = -0.00331094 | |
TeslaReportAlgo DEBUG 25#Particle.posmomCov20 = 0.562861 | |
TeslaReportAlgo DEBUG 26#Particle.posmomCov02 = 0 | |
TeslaReportAlgo DEBUG 27#Particle.posmomCov21 = -0.00623402 | |
TeslaReportAlgo DEBUG 28#Particle.posmomCov12 = 0 | |
TeslaReportAlgo DEBUG 29#Particle.posmomCov30 = 0.562336 | |
TeslaReportAlgo DEBUG 3#Particle.referencePoint.x = 0.00947533 | |
TeslaReportAlgo DEBUG 30#Particle.posmomCov31 = -0.0145169 | |
TeslaReportAlgo DEBUG 31#Particle.posmomCov32 = 0 | |
TeslaReportAlgo DEBUG 32#Particle.posCov00 = 0.00219256 | |
TeslaReportAlgo DEBUG 33#Particle.posCov11 = 0.0026898 | |
TeslaReportAlgo DEBUG 34#Particle.posCov22 = 0 | |
TeslaReportAlgo DEBUG 35#Particle.posCov10 = 3.57355e-05 | |
TeslaReportAlgo DEBUG 36#Particle.posCov20 = 0 | |
TeslaReportAlgo DEBUG 37#Particle.posCov21 = 0 | |
TeslaReportAlgo DEBUG 4#Particle.referencePoint.y = 0.017403 | |
TeslaReportAlgo DEBUG 5#Particle.slopes.x = 0.0017599 | |
TeslaReportAlgo DEBUG 6#Particle.slopes.y = 0.0211184 | |
TeslaReportAlgo DEBUG 7#Particle.1/p = 1.24656e-05 | |
TeslaReportAlgo DEBUG 8#Particle.conflevel = 0.250063 | |
TeslaReportAlgo DEBUG 9#Particle.massErr = 0 | |
TeslaReportAlgo DEBUG p = 80221 | |
TeslaReportAlgo DEBUG p (par_mom) = 80221 | |
TeslaReportAlgo DEBUG pT (par_mom) = 1699.63 | |
TeslaReportAlgo DEBUG Particle measured mass = 105.658 | |
TeslaReportAlgo DEBUG Particle CL = 0.250063 | |
TeslaReportAlgo DEBUG Available information (track) | |
TeslaReportAlgo DEBUG 0#Track.firstState.z = 10.5441 | |
TeslaReportAlgo DEBUG 1#Track.firstState.x = 0.00947533 | |
TeslaReportAlgo DEBUG 10#Track.flags = 2.19556e+06 | |
TeslaReportAlgo DEBUG 11#Track.lastState.z = 11900 | |
TeslaReportAlgo DEBUG 12#Track.lastState.x = 123.66 | |
TeslaReportAlgo DEBUG 13#Track.lastState.y = 251.135 | |
TeslaReportAlgo DEBUG 14#Track.lastState.tx = 0.017542 | |
TeslaReportAlgo DEBUG 15#Track.lastState.ty = 0.0211339 | |
TeslaReportAlgo DEBUG 16#Track.lastState.qOverP = -1.24755e-05 | |
TeslaReportAlgo DEBUG 2#Track.firstState.y = 0.017403 | |
TeslaReportAlgo DEBUG 3#Track.firstState.tx = 0.0017599 | |
TeslaReportAlgo DEBUG 4#Track.firstState.ty = 0.0211184 | |
TeslaReportAlgo DEBUG 5#Track.firstState.qOverP = -1.24656e-05 | |
TeslaReportAlgo DEBUG 6#Track.chi2PerDoF = 1.27525 | |
TeslaReportAlgo DEBUG 7#Track.nDoF = 19 | |
TeslaReportAlgo DEBUG 8#Track.Likelihood = 999 | |
TeslaReportAlgo DEBUG 9#Track.GhostProb = 999 | |
TeslaReportAlgo DEBUG FastTTValidationTool/ValidateWithTT = 1 | |
TeslaReportAlgo DEBUG MatchVeloMuon = 1 | |
TeslaReportAlgo DEBUG PatForwardTool/LooseForward = 1 | |
TeslaReportAlgo DEBUG PatForwardTool/TightForward = 1 | |
TeslaReportAlgo DEBUG Track #chi^{2}/DoF = 1.27525 | |
TeslaReportAlgo DEBUG Track extra for Rep v2, adding last state | |
TeslaReportAlgo DEBUG Track details added | |
TeslaReportAlgo DEBUG Available information (proto) | |
TeslaReportAlgo DEBUG 0#Proto.extraInfo.IsPhoton = -1000 | |
TeslaReportAlgo DEBUG Proto isPhoton = -1000 | |
TeslaReportAlgo DEBUG ProtoParticle details added | |
TeslaReportAlgo DEBUG Available information (muon) | |
TeslaReportAlgo DEBUG 0#Muon.MuonLLMu = -0.32186 | |
TeslaReportAlgo DEBUG 1#Muon.MuonLLBg = -4.44033 | |
TeslaReportAlgo DEBUG 2#Muon.NShared = 0 | |
TeslaReportAlgo DEBUG 3#Muon.Status = 31 | |
TeslaReportAlgo DEBUG 4#Muon.IsMuon = 1 | |
TeslaReportAlgo DEBUG 5#Muon.IsMuonLoose = 1 | |
TeslaReportAlgo DEBUG 6#Muon.IsMuonTight = 1 | |
TeslaReportAlgo DEBUG Muon LLMu = -0.32186 | |
TeslaReportAlgo DEBUG MuonPID details added | |
TeslaReportAlgo DEBUG Available information (track) | |
TeslaReportAlgo DEBUG 0#Track.firstState.z = 9450 | |
TeslaReportAlgo DEBUG 1#Track.firstState.x = 80.8942 | |
TeslaReportAlgo DEBUG 10#Track.flags = 167 | |
TeslaReportAlgo DEBUG 11#Track.lastState.z = 9450 | |
TeslaReportAlgo DEBUG 12#Track.lastState.x = 80.8942 | |
TeslaReportAlgo DEBUG 13#Track.lastState.y = 199.358 | |
TeslaReportAlgo DEBUG 14#Track.lastState.tx = 0.0172742 | |
TeslaReportAlgo DEBUG 15#Track.lastState.ty = 0.0211321 | |
TeslaReportAlgo DEBUG 16#Track.lastState.qOverP = -1.24736e-05 | |
TeslaReportAlgo DEBUG 2#Track.firstState.y = 199.358 | |
TeslaReportAlgo DEBUG 3#Track.firstState.tx = 0.0172742 | |
TeslaReportAlgo DEBUG 4#Track.firstState.ty = 0.0211321 | |
TeslaReportAlgo DEBUG 5#Track.firstState.qOverP = -1.24736e-05 | |
TeslaReportAlgo DEBUG 6#Track.chi2PerDoF = 0 | |
TeslaReportAlgo DEBUG 7#Track.nDoF = 0 | |
TeslaReportAlgo DEBUG 8#Track.Likelihood = 999 | |
TeslaReportAlgo DEBUG 9#Track.GhostProb = 999 | |
TeslaReportAlgo DEBUG Track #chi^{2}/DoF = 0 | |
TeslaReportAlgo DEBUG Track extra for Rep v2, adding last state | |
TeslaReportAlgo DEBUG Track details added | |
TeslaReportAlgo DEBUG Starting to tie pieces together | |
TeslaReportAlgo DEBUG Pieces tied together | |
TeslaReportAlgo DEBUG Daughter level 1 CLASS ID = 802 | |
TeslaReportAlgo DEBUG Available information (vertex) | |
TeslaReportAlgo DEBUG 0#Vertex.chi2 = 0.489886 | |
TeslaReportAlgo DEBUG 1#Vertex.ndf = 1 | |
TeslaReportAlgo DEBUG 10#Vertex.cov20 = 0.0189731 | |
TeslaReportAlgo DEBUG 11#Vertex.cov21 = -0.00339089 | |
TeslaReportAlgo DEBUG 2#Vertex.position.x = -8.32787e-05 | |
TeslaReportAlgo DEBUG 3#Vertex.position.y = 0.0072396 | |
TeslaReportAlgo DEBUG 4#Vertex.position.z = 11.5579 | |
TeslaReportAlgo DEBUG 5#Vertex.technique = 0 | |
TeslaReportAlgo DEBUG 6#Vertex.cov00 = 0.00198801 | |
TeslaReportAlgo DEBUG 7#Vertex.cov11 = 0.000408535 | |
TeslaReportAlgo DEBUG 8#Vertex.cov22 = 0.208778 | |
TeslaReportAlgo DEBUG 9#Vertex.cov10 = -0.000308481 | |
TeslaReportAlgo DEBUG Decay vertex chi2 = 0.489886 | |
TeslaReportAlgo DEBUG Setting mother decay vertex | |
TeslaReportAlgo DEBUG End of algorithm execution | |
TeslaReportAlgo DEBUG ==> Execute | |
TeslaReportAlgo... DEBUG SelReports version check requested | |
TeslaReportAlgo... DEBUG The object of type 'LHCb::HltSelReports*' has been retrieved from TS at address 'Hlt2/SelReports' | |
TeslaReportAlgo... DEBUG Examining mother report | |
TeslaReportAlgo... DEBUG Mother report is of a particle | |
TeslaReportAlgo... DEBUG ReportCheckTool finds verision 2 | |
TeslaReportAlgo DEBUG VersionNum = 2 | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Particle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Particles' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::ProtoParticle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Protos' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Vertex,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Vertices' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Track,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Tracks' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::RichPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/RichPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::MuonPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/MuonPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::VertexBase,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Rec/Vertex/Primary' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'LHCb::Relation1D<LHCb::Particle,LHCb::VertexBase>' is registered in TS at address 'Tesla/Particle2VertexRelations' | |
TeslaReportAlgo DEBUG The object of type 'LHCb::HltVertexReports*' has been retrieved from TS at address 'Hlt1/VertexReports' | |
TeslaReportAlgo DEBUG Available vertex reports: | |
TeslaReportAlgo DEBUG PV3D | |
TeslaReportAlgo DEBUG ProtoPV3D | |
TeslaReportAlgo DEBUG Vertex chi2= 37.9958, ndf =49 | |
TeslaReportAlgo DEBUG Vertex key= 0 | |
TeslaReportAlgo DEBUG Vertex chi2= 7.7961, ndf =7 | |
TeslaReportAlgo DEBUG Vertex key= 1 | |
TeslaReportAlgo DEBUG Vertex chi2= 4.98729, ndf =7 | |
TeslaReportAlgo DEBUG Vertex key= 2 | |
TeslaReportAlgo DEBUG The object of type 'LHCb::HltSelReports*' has been retrieved from TS at address 'Hlt2/SelReports' | |
TeslaReportAlgo DEBUG Available reports: | |
TeslaReportAlgo DEBUG Hlt2DiMuonDecision | |
TeslaReportAlgo DEBUG Hlt2DiMuonJPsiDecision | |
TeslaReportAlgo DEBUG Hlt2Global | |
TeslaReportAlgo DEBUG Hlt2SingleMuonLowPTDecision | |
TeslaReportAlgo DEBUG Required line has been fired | |
TeslaReportAlgo DEBUG Reference: | |
TeslaReportAlgo DEBUG Particle class ID = 801 | |
TeslaReportAlgo DEBUG Track class ID = 10010 | |
TeslaReportAlgo DEBUG RecVertex class ID = 10030 | |
TeslaReportAlgo DEBUG Vertex class ID = 802 | |
TeslaReportAlgo DEBUG ProtoParticle class ID = 803 | |
TeslaReportAlgo DEBUG { summarizedObjectCLID : 1 numericalInfo : { 0#SelectionID:50201 , } substructure : { 12:801 , } lhcbIDs : { } } | |
TeslaReportAlgo DEBUG MOTHER CLASS ID = 1 | |
TeslaReportAlgo DEBUG LHCbIDs.size() = 0 | |
TeslaReportAlgo DEBUG Number of triggered candidates = 1 | |
TeslaReportAlgo DEBUG [0xb568300] | |
TeslaReportAlgo DEBUG Starting loop over triggered candidates | |
TeslaReportAlgo DEBUG Mother object CLASS ID = 801 | |
TeslaReportAlgo DEBUG Found mother with ID: 443 | |
TeslaReportAlgo DEBUG Mother has substructure consisting of: | |
TeslaReportAlgo DEBUG 801 | |
TeslaReportAlgo DEBUG 801 | |
TeslaReportAlgo DEBUG 802 | |
TeslaReportAlgo DEBUG Available information | |
TeslaReportAlgo DEBUG 0#Particle.particleID.pid = 443 | |
TeslaReportAlgo DEBUG 1#Particle.measuredMass = 3093.06 | |
TeslaReportAlgo DEBUG 10#Particle.momCov00 = 65.8358 | |
TeslaReportAlgo DEBUG 11#Particle.momCov11 = 39.1664 | |
TeslaReportAlgo DEBUG 12#Particle.momCov22 = 20322 | |
TeslaReportAlgo DEBUG 13#Particle.momCov33 = 20394.4 | |
TeslaReportAlgo DEBUG 14#Particle.momCov10 = -29.8246 | |
TeslaReportAlgo DEBUG 15#Particle.momCov20 = 406.016 | |
TeslaReportAlgo DEBUG 16#Particle.momCov21 = -529.457 | |
TeslaReportAlgo DEBUG 17#Particle.momCov30 = 405.535 | |
TeslaReportAlgo DEBUG 18#Particle.momCov31 = -530.106 | |
TeslaReportAlgo DEBUG 19#Particle.momCov32 = 20358.1 | |
TeslaReportAlgo DEBUG 2#Particle.referencePoint.z = 26.8674 | |
TeslaReportAlgo DEBUG 20#Particle.posmomCov00 = -0.0518662 | |
TeslaReportAlgo DEBUG 21#Particle.posmomCov11 = -0.0543912 | |
TeslaReportAlgo DEBUG 22#Particle.posmomCov22 = 0.237889 | |
TeslaReportAlgo DEBUG 23#Particle.posmomCov10 = 0.000334039 | |
TeslaReportAlgo DEBUG 24#Particle.posmomCov01 = -0.00194883 | |
TeslaReportAlgo DEBUG 25#Particle.posmomCov20 = -0.0236541 | |
TeslaReportAlgo DEBUG 26#Particle.posmomCov02 = 0.0652324 | |
TeslaReportAlgo DEBUG 27#Particle.posmomCov21 = 0.000713534 | |
TeslaReportAlgo DEBUG 28#Particle.posmomCov12 = -0.0170108 | |
TeslaReportAlgo DEBUG 29#Particle.posmomCov30 = -0.0239236 | |
TeslaReportAlgo DEBUG 3#Particle.referencePoint.x = 0.0150273 | |
TeslaReportAlgo DEBUG 30#Particle.posmomCov31 = 0.000855612 | |
TeslaReportAlgo DEBUG 31#Particle.posmomCov32 = 0.285996 | |
TeslaReportAlgo DEBUG 32#Particle.posCov00 = 0.000197983 | |
TeslaReportAlgo DEBUG 33#Particle.posCov11 = 0.000218648 | |
TeslaReportAlgo DEBUG 34#Particle.posCov22 = 0.0348015 | |
TeslaReportAlgo DEBUG 35#Particle.posCov10 = 1.73007e-05 | |
TeslaReportAlgo DEBUG 36#Particle.posCov20 = -0.000837252 | |
TeslaReportAlgo DEBUG 37#Particle.posCov21 = -0.000329777 | |
TeslaReportAlgo DEBUG 4#Particle.referencePoint.y = 0.0228517 | |
TeslaReportAlgo DEBUG 5#Particle.slopes.x = -0.00216774 | |
TeslaReportAlgo DEBUG 6#Particle.slopes.y = -0.0158452 | |
TeslaReportAlgo DEBUG 7#Particle.1/p = 2.14651e-05 | |
TeslaReportAlgo DEBUG 8#Particle.conflevel = -1 | |
TeslaReportAlgo DEBUG 9#Particle.massErr = 9.52489 | |
TeslaReportAlgo DEBUG p = 46587.3 | |
TeslaReportAlgo DEBUG p (par_mom) = 46587.3 | |
TeslaReportAlgo DEBUG pT (par_mom) = 744.967 | |
TeslaReportAlgo DEBUG Particle measured mass = 3093.06 | |
TeslaReportAlgo DEBUG Particle CL = -1 | |
TeslaReportAlgo DEBUG Daughter level 1 CLASS ID = 801 | |
TeslaReportAlgo DEBUG 1st Gen. Daughter ID: -13 | |
TeslaReportAlgo DEBUG Basic daughter level 1 has substructure consisting of: | |
TeslaReportAlgo DEBUG 10010 | |
TeslaReportAlgo DEBUG 803 | |
TeslaReportAlgo DEBUG 11050 | |
TeslaReportAlgo DEBUG 10010 | |
TeslaReportAlgo DEBUG Available information | |
TeslaReportAlgo DEBUG 0#Particle.particleID.pid = -13 | |
TeslaReportAlgo DEBUG 1#Particle.measuredMass = 105.658 | |
TeslaReportAlgo DEBUG 10#Particle.momCov00 = 35.4533 | |
TeslaReportAlgo DEBUG 11#Particle.momCov11 = 30.6437 | |
TeslaReportAlgo DEBUG 12#Particle.momCov22 = 17433.7 | |
TeslaReportAlgo DEBUG 13#Particle.momCov33 = 17480.1 | |
TeslaReportAlgo DEBUG 14#Particle.momCov10 = -23.1967 | |
TeslaReportAlgo DEBUG 15#Particle.momCov20 = 670.707 | |
TeslaReportAlgo DEBUG 16#Particle.momCov21 = -602.152 | |
TeslaReportAlgo DEBUG 17#Particle.momCov30 = 671.969 | |
TeslaReportAlgo DEBUG 18#Particle.momCov31 = -603.294 | |
TeslaReportAlgo DEBUG 19#Particle.momCov32 = 17456.9 | |
TeslaReportAlgo DEBUG 2#Particle.referencePoint.z = 26.827 | |
TeslaReportAlgo DEBUG 20#Particle.posmomCov00 = -0.0548154 | |
TeslaReportAlgo DEBUG 21#Particle.posmomCov11 = -0.0554205 | |
TeslaReportAlgo DEBUG 22#Particle.posmomCov22 = 0 | |
TeslaReportAlgo DEBUG 23#Particle.posmomCov10 = 0.000787484 | |
TeslaReportAlgo DEBUG 24#Particle.posmomCov01 = -0.000652835 | |
TeslaReportAlgo DEBUG 25#Particle.posmomCov20 = -0.0390311 | |
TeslaReportAlgo DEBUG 26#Particle.posmomCov02 = 0 | |
TeslaReportAlgo DEBUG 27#Particle.posmomCov21 = -0.00468717 | |
TeslaReportAlgo DEBUG 28#Particle.posmomCov12 = 0 | |
TeslaReportAlgo DEBUG 29#Particle.posmomCov30 = -0.0411012 | |
TeslaReportAlgo DEBUG 3#Particle.referencePoint.x = 0.00945395 | |
TeslaReportAlgo DEBUG 30#Particle.posmomCov31 = -0.00279442 | |
TeslaReportAlgo DEBUG 31#Particle.posmomCov32 = 0 | |
TeslaReportAlgo DEBUG 32#Particle.posCov00 = 0.000341271 | |
TeslaReportAlgo DEBUG 33#Particle.posCov11 = 0.000370132 | |
TeslaReportAlgo DEBUG 34#Particle.posCov22 = 0 | |
TeslaReportAlgo DEBUG 35#Particle.posCov10 = 1.60685e-05 | |
TeslaReportAlgo DEBUG 36#Particle.posCov20 = 0 | |
TeslaReportAlgo DEBUG 37#Particle.posCov21 = 0 | |
TeslaReportAlgo DEBUG 4#Particle.referencePoint.y = 0.0155008 | |
TeslaReportAlgo DEBUG 5#Particle.slopes.x = 0.0382676 | |
TeslaReportAlgo DEBUG 6#Particle.slopes.y = -0.0345359 | |
TeslaReportAlgo DEBUG 7#Particle.1/p = 3.11356e-05 | |
TeslaReportAlgo DEBUG 8#Particle.conflevel = 0.250063 | |
TeslaReportAlgo DEBUG 9#Particle.massErr = 0 | |
TeslaReportAlgo DEBUG p = 32117.6 | |
TeslaReportAlgo DEBUG p (par_mom) = 32117.6 | |
TeslaReportAlgo DEBUG pT (par_mom) = 1653.38 | |
TeslaReportAlgo DEBUG Particle measured mass = 105.658 | |
TeslaReportAlgo DEBUG Particle CL = 0.250063 | |
TeslaReportAlgo DEBUG Available information (track) | |
TeslaReportAlgo DEBUG 0#Track.firstState.z = 26.827 | |
TeslaReportAlgo DEBUG 1#Track.firstState.x = 0.00945395 | |
TeslaReportAlgo DEBUG 10#Track.flags = 2.19556e+06 | |
TeslaReportAlgo DEBUG 11#Track.lastState.z = 11900 | |
TeslaReportAlgo DEBUG 12#Track.lastState.x = 196.052 | |
TeslaReportAlgo DEBUG 13#Track.lastState.y = -408.183 | |
TeslaReportAlgo DEBUG 14#Track.lastState.tx = -0.00137716 | |
TeslaReportAlgo DEBUG 15#Track.lastState.ty = -0.0343528 | |
TeslaReportAlgo DEBUG 16#Track.lastState.qOverP = 3.11907e-05 | |
TeslaReportAlgo DEBUG 2#Track.firstState.y = 0.0155008 | |
TeslaReportAlgo DEBUG 3#Track.firstState.tx = 0.0382676 | |
TeslaReportAlgo DEBUG 4#Track.firstState.ty = -0.0345359 | |
TeslaReportAlgo DEBUG 5#Track.firstState.qOverP = 3.11356e-05 | |
TeslaReportAlgo DEBUG 6#Track.chi2PerDoF = 1.1677 | |
TeslaReportAlgo DEBUG 7#Track.nDoF = 38 | |
TeslaReportAlgo DEBUG 8#Track.Likelihood = 999 | |
TeslaReportAlgo DEBUG 9#Track.GhostProb = 999 | |
TeslaReportAlgo DEBUG MatchVeloMuon = 1 | |
TeslaReportAlgo DEBUG PatForwardTool/LooseForward = 1 | |
TeslaReportAlgo DEBUG Track #chi^{2}/DoF = 1.1677 | |
TeslaReportAlgo DEBUG Track extra for Rep v2, adding last state | |
TeslaReportAlgo DEBUG Track details added | |
TeslaReportAlgo DEBUG Available information (proto) | |
TeslaReportAlgo DEBUG 0#Proto.extraInfo.IsPhoton = -1000 | |
TeslaReportAlgo DEBUG Proto isPhoton = -1000 | |
TeslaReportAlgo DEBUG ProtoParticle details added | |
TeslaReportAlgo DEBUG Available information (muon) | |
TeslaReportAlgo DEBUG 0#Muon.MuonLLMu = -1.31528 | |
TeslaReportAlgo DEBUG 1#Muon.MuonLLBg = -5.46741 | |
TeslaReportAlgo DEBUG 2#Muon.NShared = 0 | |
TeslaReportAlgo DEBUG 3#Muon.Status = 31 | |
TeslaReportAlgo DEBUG 4#Muon.IsMuon = 1 | |
TeslaReportAlgo DEBUG 5#Muon.IsMuonLoose = 1 | |
TeslaReportAlgo DEBUG 6#Muon.IsMuonTight = 1 | |
TeslaReportAlgo DEBUG Muon LLMu = -1.31528 | |
TeslaReportAlgo DEBUG MuonPID details added | |
TeslaReportAlgo DEBUG Available information (track) | |
TeslaReportAlgo DEBUG 0#Track.firstState.z = 9450 | |
TeslaReportAlgo DEBUG 1#Track.firstState.x = 198.906 | |
TeslaReportAlgo DEBUG 10#Track.flags = 167 | |
TeslaReportAlgo DEBUG 11#Track.lastState.z = 9450 | |
TeslaReportAlgo DEBUG 12#Track.lastState.x = 198.906 | |
TeslaReportAlgo DEBUG 13#Track.lastState.y = -324.016 | |
TeslaReportAlgo DEBUG 14#Track.lastState.tx = -0.000721411 | |
TeslaReportAlgo DEBUG 15#Track.lastState.ty = -0.0343551 | |
TeslaReportAlgo DEBUG 16#Track.lastState.qOverP = 3.11789e-05 | |
TeslaReportAlgo DEBUG 2#Track.firstState.y = -324.016 | |
TeslaReportAlgo DEBUG 3#Track.firstState.tx = -0.000721411 | |
TeslaReportAlgo DEBUG 4#Track.firstState.ty = -0.0343551 | |
TeslaReportAlgo DEBUG 5#Track.firstState.qOverP = 3.11789e-05 | |
TeslaReportAlgo DEBUG 6#Track.chi2PerDoF = 0 | |
TeslaReportAlgo DEBUG 7#Track.nDoF = 0 | |
TeslaReportAlgo DEBUG 8#Track.Likelihood = 999 | |
TeslaReportAlgo DEBUG 9#Track.GhostProb = 999 | |
TeslaReportAlgo DEBUG Track #chi^{2}/DoF = 0 | |
TeslaReportAlgo DEBUG Track extra for Rep v2, adding last state | |
TeslaReportAlgo DEBUG Track details added | |
TeslaReportAlgo DEBUG Starting to tie pieces together | |
TeslaReportAlgo DEBUG Pieces tied together | |
TeslaReportAlgo DEBUG Daughter level 1 CLASS ID = 801 | |
TeslaReportAlgo DEBUG 1st Gen. Daughter ID: 13 | |
TeslaReportAlgo DEBUG Basic daughter level 1 has substructure consisting of: | |
TeslaReportAlgo DEBUG 10010 | |
TeslaReportAlgo DEBUG 803 | |
TeslaReportAlgo DEBUG 11050 | |
TeslaReportAlgo DEBUG 10010 | |
TeslaReportAlgo DEBUG Available information | |
TeslaReportAlgo DEBUG 0#Particle.particleID.pid = 13 | |
TeslaReportAlgo DEBUG 1#Particle.measuredMass = 105.658 | |
TeslaReportAlgo DEBUG 10#Particle.momCov00 = 30.3894 | |
TeslaReportAlgo DEBUG 11#Particle.momCov11 = 8.5241 | |
TeslaReportAlgo DEBUG 12#Particle.momCov22 = 2889.7 | |
TeslaReportAlgo DEBUG 13#Particle.momCov33 = 2915.66 | |
TeslaReportAlgo DEBUG 14#Particle.momCov10 = -6.62488 | |
TeslaReportAlgo DEBUG 15#Particle.momCov20 = -264.592 | |
TeslaReportAlgo DEBUG 16#Particle.momCov21 = 72.7393 | |
TeslaReportAlgo DEBUG 17#Particle.momCov30 = -266.336 | |
TeslaReportAlgo DEBUG 18#Particle.momCov31 = 73.2312 | |
TeslaReportAlgo DEBUG 19#Particle.momCov32 = 2902.63 | |
TeslaReportAlgo DEBUG 2#Particle.referencePoint.z = 26.8993 | |
TeslaReportAlgo DEBUG 20#Particle.posmomCov00 = -0.0453873 | |
TeslaReportAlgo DEBUG 21#Particle.posmomCov11 = -0.0533439 | |
TeslaReportAlgo DEBUG 22#Particle.posmomCov22 = 0 | |
TeslaReportAlgo DEBUG 23#Particle.posmomCov10 = -0.00100248 | |
TeslaReportAlgo DEBUG 24#Particle.posmomCov01 = -0.00227564 | |
TeslaReportAlgo DEBUG 25#Particle.posmomCov20 = 0.00513485 | |
TeslaReportAlgo DEBUG 26#Particle.posmomCov02 = 0 | |
TeslaReportAlgo DEBUG 27#Particle.posmomCov21 = 0.0136488 | |
TeslaReportAlgo DEBUG 28#Particle.posmomCov12 = 0 | |
TeslaReportAlgo DEBUG 29#Particle.posmomCov30 = 0.00922334 | |
TeslaReportAlgo DEBUG 3#Particle.referencePoint.x = 0.0166061 | |
TeslaReportAlgo DEBUG 30#Particle.posmomCov31 = 0.0124415 | |
TeslaReportAlgo DEBUG 31#Particle.posmomCov32 = 0 | |
TeslaReportAlgo DEBUG 32#Particle.posCov00 = 0.000371352 | |
TeslaReportAlgo DEBUG 33#Particle.posCov11 = 0.000515998 | |
TeslaReportAlgo DEBUG 34#Particle.posCov22 = 0 | |
TeslaReportAlgo DEBUG 35#Particle.posCov10 = 2.24515e-05 | |
TeslaReportAlgo DEBUG 36#Particle.posCov20 = 0 | |
TeslaReportAlgo DEBUG 37#Particle.posCov21 = 0 | |
TeslaReportAlgo DEBUG 4#Particle.referencePoint.y = 0.0358689 | |
TeslaReportAlgo DEBUG 5#Particle.slopes.x = -0.0915641 | |
TeslaReportAlgo DEBUG 6#Particle.slopes.y = 0.025482 | |
TeslaReportAlgo DEBUG 7#Particle.1/p = 6.86217e-05 | |
TeslaReportAlgo DEBUG 8#Particle.conflevel = 0.250063 | |
TeslaReportAlgo DEBUG 9#Particle.massErr = 0 | |
TeslaReportAlgo DEBUG p = 14572.7 | |
TeslaReportAlgo DEBUG p (par_mom) = 14572.7 | |
TeslaReportAlgo DEBUG pT (par_mom) = 1378.83 | |
TeslaReportAlgo DEBUG Particle measured mass = 105.658 | |
TeslaReportAlgo DEBUG Particle CL = 0.250063 | |
TeslaReportAlgo DEBUG Available information (track) | |
TeslaReportAlgo DEBUG 0#Track.firstState.z = 26.8993 | |
TeslaReportAlgo DEBUG 1#Track.firstState.x = 0.0166061 | |
TeslaReportAlgo DEBUG 10#Track.flags = 98403 | |
TeslaReportAlgo DEBUG 11#Track.lastState.z = 11900 | |
TeslaReportAlgo DEBUG 12#Track.lastState.x = -515.068 | |
TeslaReportAlgo DEBUG 13#Track.lastState.y = 304.614 | |
TeslaReportAlgo DEBUG 14#Track.lastState.tx = -0.00410951 | |
TeslaReportAlgo DEBUG 15#Track.lastState.ty = 0.0255881 | |
TeslaReportAlgo DEBUG 16#Track.lastState.qOverP = -6.88497e-05 | |
TeslaReportAlgo DEBUG 2#Track.firstState.y = 0.0358689 | |
TeslaReportAlgo DEBUG 3#Track.firstState.tx = -0.0915641 | |
TeslaReportAlgo DEBUG 4#Track.firstState.ty = 0.025482 | |
TeslaReportAlgo DEBUG 5#Track.firstState.qOverP = -6.86217e-05 | |
TeslaReportAlgo DEBUG 6#Track.chi2PerDoF = 0.871167 | |
TeslaReportAlgo DEBUG 7#Track.nDoF = 33 | |
TeslaReportAlgo DEBUG 8#Track.Likelihood = 999 | |
TeslaReportAlgo DEBUG 9#Track.GhostProb = 999 | |
TeslaReportAlgo DEBUG MatchVeloMuon = 0 | |
TeslaReportAlgo DEBUG Track #chi^{2}/DoF = 0.871167 | |
TeslaReportAlgo DEBUG Track extra for Rep v2, adding last state | |
TeslaReportAlgo DEBUG Track details added | |
TeslaReportAlgo DEBUG Available information (proto) | |
TeslaReportAlgo DEBUG 0#Proto.extraInfo.IsPhoton = -1000 | |
TeslaReportAlgo DEBUG Proto isPhoton = -1000 | |
TeslaReportAlgo DEBUG ProtoParticle details added | |
TeslaReportAlgo DEBUG Available information (muon) | |
TeslaReportAlgo DEBUG 0#Muon.MuonLLMu = -0.215299 | |
TeslaReportAlgo DEBUG 1#Muon.MuonLLBg = -1.0939 | |
TeslaReportAlgo DEBUG 2#Muon.NShared = 0 | |
TeslaReportAlgo DEBUG 3#Muon.Status = 31 | |
TeslaReportAlgo DEBUG 4#Muon.IsMuon = 1 | |
TeslaReportAlgo DEBUG 5#Muon.IsMuonLoose = 1 | |
TeslaReportAlgo DEBUG 6#Muon.IsMuonTight = 1 | |
TeslaReportAlgo DEBUG Muon LLMu = -0.215299 | |
TeslaReportAlgo DEBUG MuonPID details added | |
TeslaReportAlgo DEBUG Available information (track) | |
TeslaReportAlgo DEBUG 0#Track.firstState.z = 9450 | |
TeslaReportAlgo DEBUG 1#Track.firstState.x = -503.853 | |
TeslaReportAlgo DEBUG 10#Track.flags = 167 | |
TeslaReportAlgo DEBUG 11#Track.lastState.z = 9450 | |
TeslaReportAlgo DEBUG 12#Track.lastState.x = -503.853 | |
TeslaReportAlgo DEBUG 13#Track.lastState.y = 241.911 | |
TeslaReportAlgo DEBUG 14#Track.lastState.tx = -0.00555783 | |
TeslaReportAlgo DEBUG 15#Track.lastState.ty = 0.0255988 | |
TeslaReportAlgo DEBUG 16#Track.lastState.qOverP = -6.87951e-05 | |
TeslaReportAlgo DEBUG 2#Track.firstState.y = 241.911 | |
TeslaReportAlgo DEBUG 3#Track.firstState.tx = -0.00555783 | |
TeslaReportAlgo DEBUG 4#Track.firstState.ty = 0.0255988 | |
TeslaReportAlgo DEBUG 5#Track.firstState.qOverP = -6.87951e-05 | |
TeslaReportAlgo DEBUG 6#Track.chi2PerDoF = 0 | |
TeslaReportAlgo DEBUG 7#Track.nDoF = 0 | |
TeslaReportAlgo DEBUG 8#Track.Likelihood = 999 | |
TeslaReportAlgo DEBUG 9#Track.GhostProb = 999 | |
TeslaReportAlgo DEBUG Track #chi^{2}/DoF = 0 | |
TeslaReportAlgo DEBUG Track extra for Rep v2, adding last state | |
TeslaReportAlgo DEBUG Track details added | |
TeslaReportAlgo DEBUG Starting to tie pieces together | |
TeslaReportAlgo DEBUG Pieces tied together | |
TeslaReportAlgo DEBUG Daughter level 1 CLASS ID = 802 | |
TeslaReportAlgo DEBUG Available information (vertex) | |
TeslaReportAlgo DEBUG 0#Vertex.chi2 = 0.576876 | |
TeslaReportAlgo DEBUG 1#Vertex.ndf = 1 | |
TeslaReportAlgo DEBUG 10#Vertex.cov20 = -0.000837252 | |
TeslaReportAlgo DEBUG 11#Vertex.cov21 = -0.000329777 | |
TeslaReportAlgo DEBUG 2#Vertex.position.x = 0.0150273 | |
TeslaReportAlgo DEBUG 3#Vertex.position.y = 0.0228517 | |
TeslaReportAlgo DEBUG 4#Vertex.position.z = 26.8674 | |
TeslaReportAlgo DEBUG 5#Vertex.technique = 0 | |
TeslaReportAlgo DEBUG 6#Vertex.cov00 = 0.000197983 | |
TeslaReportAlgo DEBUG 7#Vertex.cov11 = 0.000218648 | |
TeslaReportAlgo DEBUG 8#Vertex.cov22 = 0.0348015 | |
TeslaReportAlgo DEBUG 9#Vertex.cov10 = 1.73007e-05 | |
TeslaReportAlgo DEBUG Decay vertex chi2 = 0.576876 | |
TeslaReportAlgo DEBUG Setting mother decay vertex | |
TeslaReportAlgo DEBUG End of algorithm execution | |
TeslaReportAlgo DEBUG ==> Execute | |
TeslaReportAlgo... DEBUG SelReports version check requested | |
TeslaReportAlgo... DEBUG The object of type 'LHCb::HltSelReports*' has been retrieved from TS at address 'Hlt2/SelReports' | |
TeslaReportAlgo DEBUG VersionNum = 99 | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Particle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Particles' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::ProtoParticle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Protos' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Vertex,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Vertices' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Track,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Tracks' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::RichPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/RichPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::MuonPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/MuonPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::VertexBase,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Rec/Vertex/Primary' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'LHCb::Relation1D<LHCb::Particle,LHCb::VertexBase>' is registered in TS at address 'Tesla/Particle2VertexRelations' | |
TeslaReportAlgo DEBUG The object of type 'LHCb::HltVertexReports*' has been retrieved from TS at address 'Hlt1/VertexReports' | |
TeslaReportAlgo DEBUG Available vertex reports: | |
TeslaReportAlgo DEBUG PV3D | |
TeslaReportAlgo DEBUG ProtoPV3D | |
TeslaReportAlgo DEBUG Vertex chi2= 39.196, ndf =47 | |
TeslaReportAlgo DEBUG Vertex key= 0 | |
TeslaReportAlgo DEBUG Vertex chi2= 8.59046, ndf =43 | |
TeslaReportAlgo DEBUG Vertex key= 1 | |
TeslaReportAlgo DEBUG Vertex chi2= 39.786, ndf =29 | |
TeslaReportAlgo DEBUG Vertex key= 2 | |
TeslaReportAlgo DEBUG Vertex chi2= 9.23343, ndf =11 | |
TeslaReportAlgo DEBUG Vertex key= 3 | |
TeslaReportAlgo DEBUG The object of type 'LHCb::HltSelReports*' has been retrieved from TS at address 'Hlt2/SelReports' | |
TeslaReportAlgo DEBUG Available reports: | |
TeslaReportAlgo DEBUG Hlt2Global | |
TeslaReportAlgo DEBUG Hlt2SingleMuonDecision | |
TeslaReportAlgo DEBUG Hlt2SingleMuonLowPTDecision | |
TeslaReportAlgo DEBUG End of algorithm execution | |
TeslaReportAlgo DEBUG ==> Execute | |
TeslaReportAlgo... DEBUG SelReports version check requested | |
TeslaReportAlgo... DEBUG The object of type 'LHCb::HltSelReports*' has been retrieved from TS at address 'Hlt2/SelReports' | |
TeslaReportAlgo DEBUG VersionNum = 99 | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Particle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Particles' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::ProtoParticle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Protos' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Vertex,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Vertices' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Track,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Tracks' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::RichPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/RichPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::MuonPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/MuonPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::VertexBase,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Rec/Vertex/Primary' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'LHCb::Relation1D<LHCb::Particle,LHCb::VertexBase>' is registered in TS at address 'Tesla/Particle2VertexRelations' | |
TeslaReportAlgo DEBUG The object of type 'LHCb::HltVertexReports*' has been retrieved from TS at address 'Hlt1/VertexReports' | |
TeslaReportAlgo DEBUG Available vertex reports: | |
TeslaReportAlgo DEBUG PV3D | |
TeslaReportAlgo DEBUG ProtoPV3D | |
TeslaReportAlgo DEBUG Vertex chi2= 78.7294, ndf =99 | |
TeslaReportAlgo DEBUG Vertex key= 0 | |
TeslaReportAlgo DEBUG Vertex chi2= 22.3109, ndf =31 | |
TeslaReportAlgo DEBUG Vertex key= 1 | |
TeslaReportAlgo DEBUG Vertex chi2= 17.7884, ndf =21 | |
TeslaReportAlgo DEBUG Vertex key= 2 | |
TeslaReportAlgo DEBUG The object of type 'LHCb::HltSelReports*' has been retrieved from TS at address 'Hlt2/SelReports' | |
TeslaReportAlgo DEBUG Available reports: | |
TeslaReportAlgo DEBUG Hlt2Global | |
TeslaReportAlgo DEBUG Hlt2SingleMuonLowPTDecision | |
TeslaReportAlgo DEBUG End of algorithm execution | |
TeslaReportAlgo DEBUG ==> Execute | |
TeslaReportAlgo... DEBUG SelReports version check requested | |
TeslaReportAlgo... DEBUG The object of type 'LHCb::HltSelReports*' has been retrieved from TS at address 'Hlt2/SelReports' | |
TeslaReportAlgo DEBUG VersionNum = 99 | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Particle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Particles' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::ProtoParticle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Protos' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Vertex,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Vertices' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Track,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Tracks' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::RichPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/RichPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::MuonPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/MuonPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::VertexBase,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Rec/Vertex/Primary' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'LHCb::Relation1D<LHCb::Particle,LHCb::VertexBase>' is registered in TS at address 'Tesla/Particle2VertexRelations' | |
TeslaReportAlgo DEBUG The object of type 'LHCb::HltVertexReports*' has been retrieved from TS at address 'Hlt1/VertexReports' | |
TeslaReportAlgo DEBUG Available vertex reports: | |
TeslaReportAlgo DEBUG PV3D | |
TeslaReportAlgo DEBUG ProtoPV3D | |
TeslaReportAlgo DEBUG Vertex chi2= 43.1944, ndf =61 | |
TeslaReportAlgo DEBUG Vertex key= 0 | |
TeslaReportAlgo DEBUG Vertex chi2= 23.9643, ndf =37 | |
TeslaReportAlgo DEBUG Vertex key= 1 | |
TeslaReportAlgo DEBUG Vertex chi2= 3.72691, ndf =7 | |
TeslaReportAlgo DEBUG Vertex key= 2 | |
TeslaReportAlgo DEBUG The object of type 'LHCb::HltSelReports*' has been retrieved from TS at address 'Hlt2/SelReports' | |
TeslaReportAlgo DEBUG Available reports: | |
TeslaReportAlgo DEBUG Hlt2Global | |
TeslaReportAlgo DEBUG Hlt2SingleMuonLowPTDecision | |
TeslaReportAlgo DEBUG End of algorithm execution | |
TeslaReportAlgo DEBUG ==> Execute | |
TeslaReportAlgo... DEBUG SelReports version check requested | |
TeslaReportAlgo... DEBUG The object of type 'LHCb::HltSelReports*' has been retrieved from TS at address 'Hlt2/SelReports' | |
TeslaReportAlgo... DEBUG Examining mother report | |
TeslaReportAlgo... DEBUG Mother report is of a particle | |
TeslaReportAlgo... DEBUG ReportCheckTool finds verision 2 | |
TeslaReportAlgo DEBUG VersionNum = 2 | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Particle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Particles' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::ProtoParticle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Protos' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Vertex,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Vertices' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Track,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Tracks' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::RichPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/RichPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::MuonPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/MuonPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::VertexBase,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Rec/Vertex/Primary' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'LHCb::Relation1D<LHCb::Particle,LHCb::VertexBase>' is registered in TS at address 'Tesla/Particle2VertexRelations' | |
TeslaReportAlgo DEBUG The object of type 'LHCb::HltVertexReports*' has been retrieved from TS at address 'Hlt1/VertexReports' | |
TeslaReportAlgo DEBUG Available vertex reports: | |
TeslaReportAlgo DEBUG PV3D | |
TeslaReportAlgo DEBUG ProtoPV3D | |
TeslaReportAlgo DEBUG Vertex chi2= 62.9528, ndf =85 | |
TeslaReportAlgo DEBUG Vertex key= 0 | |
TeslaReportAlgo DEBUG Vertex chi2= 50.0601, ndf =65 | |
TeslaReportAlgo DEBUG Vertex key= 1 | |
TeslaReportAlgo DEBUG Vertex chi2= 21.2191, ndf =35 | |
TeslaReportAlgo DEBUG Vertex key= 2 | |
TeslaReportAlgo DEBUG Vertex chi2= 19.9246, ndf =31 | |
TeslaReportAlgo DEBUG Vertex key= 3 | |
TeslaReportAlgo DEBUG The object of type 'LHCb::HltSelReports*' has been retrieved from TS at address 'Hlt2/SelReports' | |
TeslaReportAlgo DEBUG Available reports: | |
TeslaReportAlgo DEBUG Hlt2DiMuonDecision | |
TeslaReportAlgo DEBUG Hlt2DiMuonJPsiDecision | |
TeslaReportAlgo DEBUG Hlt2Global | |
TeslaReportAlgo DEBUG Hlt2SingleMuonDecision | |
TeslaReportAlgo DEBUG Hlt2SingleMuonLowPTDecision | |
TeslaReportAlgo DEBUG Required line has been fired | |
TeslaReportAlgo DEBUG Reference: | |
TeslaReportAlgo DEBUG Particle class ID = 801 | |
TeslaReportAlgo DEBUG Track class ID = 10010 | |
TeslaReportAlgo DEBUG RecVertex class ID = 10030 | |
TeslaReportAlgo DEBUG Vertex class ID = 802 | |
TeslaReportAlgo DEBUG ProtoParticle class ID = 803 | |
TeslaReportAlgo DEBUG { summarizedObjectCLID : 1 numericalInfo : { 0#SelectionID:50201 , } substructure : { 15:801 , } lhcbIDs : { } } | |
TeslaReportAlgo DEBUG MOTHER CLASS ID = 1 | |
TeslaReportAlgo DEBUG LHCbIDs.size() = 0 | |
TeslaReportAlgo DEBUG Number of triggered candidates = 1 | |
TeslaReportAlgo DEBUG [0xb568a00] | |
TeslaReportAlgo DEBUG Starting loop over triggered candidates | |
TeslaReportAlgo DEBUG Mother object CLASS ID = 801 | |
TeslaReportAlgo DEBUG Found mother with ID: 443 | |
TeslaReportAlgo DEBUG Mother has substructure consisting of: | |
TeslaReportAlgo DEBUG 801 | |
TeslaReportAlgo DEBUG 801 | |
TeslaReportAlgo DEBUG 802 | |
TeslaReportAlgo DEBUG Available information | |
TeslaReportAlgo DEBUG 0#Particle.particleID.pid = 443 | |
TeslaReportAlgo DEBUG 1#Particle.measuredMass = 3086.35 | |
TeslaReportAlgo DEBUG 10#Particle.momCov00 = 139.618 | |
TeslaReportAlgo DEBUG 11#Particle.momCov11 = 82.1935 | |
TeslaReportAlgo DEBUG 12#Particle.momCov22 = 12257.9 | |
TeslaReportAlgo DEBUG 13#Particle.momCov33 = 12456.5 | |
TeslaReportAlgo DEBUG 14#Particle.momCov10 = 9.96436 | |
TeslaReportAlgo DEBUG 15#Particle.momCov20 = -1243.38 | |
TeslaReportAlgo DEBUG 16#Particle.momCov21 = -4.58858 | |
TeslaReportAlgo DEBUG 17#Particle.momCov30 = -1254.49 | |
TeslaReportAlgo DEBUG 18#Particle.momCov31 = -5.39923 | |
TeslaReportAlgo DEBUG 19#Particle.momCov32 = 12356.7 | |
TeslaReportAlgo DEBUG 2#Particle.referencePoint.z = 19.125 | |
TeslaReportAlgo DEBUG 20#Particle.posmomCov00 = -0.0449498 | |
TeslaReportAlgo DEBUG 21#Particle.posmomCov11 = -0.0283262 | |
TeslaReportAlgo DEBUG 22#Particle.posmomCov22 = 0.241996 | |
TeslaReportAlgo DEBUG 23#Particle.posmomCov10 = -0.00649031 | |
TeslaReportAlgo DEBUG 24#Particle.posmomCov01 = 0.00792932 | |
TeslaReportAlgo DEBUG 25#Particle.posmomCov20 = -0.038896 | |
TeslaReportAlgo DEBUG 26#Particle.posmomCov02 = 0.166855 | |
TeslaReportAlgo DEBUG 27#Particle.posmomCov21 = -0.0124823 | |
TeslaReportAlgo DEBUG 28#Particle.posmomCov12 = 0.0886215 | |
TeslaReportAlgo DEBUG 29#Particle.posmomCov30 = -0.0387359 | |
TeslaReportAlgo DEBUG 3#Particle.referencePoint.x = 0.000427127 | |
TeslaReportAlgo DEBUG 30#Particle.posmomCov31 = -0.0135433 | |
TeslaReportAlgo DEBUG 31#Particle.posmomCov32 = 0.258117 | |
TeslaReportAlgo DEBUG 32#Particle.posCov00 = 0.000452555 | |
TeslaReportAlgo DEBUG 33#Particle.posCov11 = 8.95647e-05 | |
TeslaReportAlgo DEBUG 34#Particle.posCov22 = 0.0192595 | |
TeslaReportAlgo DEBUG 35#Particle.posCov10 = -9.14077e-06 | |
TeslaReportAlgo DEBUG 36#Particle.posCov20 = -0.00275635 | |
TeslaReportAlgo DEBUG 37#Particle.posCov21 = -0.000148391 | |
TeslaReportAlgo DEBUG 4#Particle.referencePoint.y = 0.00746708 | |
TeslaReportAlgo DEBUG 5#Particle.slopes.x = -0.10159 | |
TeslaReportAlgo DEBUG 6#Particle.slopes.y = 0.000251292 | |
TeslaReportAlgo DEBUG 7#Particle.1/p = 2.47652e-05 | |
TeslaReportAlgo DEBUG 8#Particle.conflevel = -1 | |
TeslaReportAlgo DEBUG 9#Particle.massErr = 9.22677 | |
TeslaReportAlgo DEBUG p = 40379.2 | |
TeslaReportAlgo DEBUG p (par_mom) = 40379.2 | |
TeslaReportAlgo DEBUG pT (par_mom) = 4081.14 | |
TeslaReportAlgo DEBUG Particle measured mass = 3086.35 | |
TeslaReportAlgo DEBUG Particle CL = -1 | |
TeslaReportAlgo DEBUG Daughter level 1 CLASS ID = 801 | |
TeslaReportAlgo DEBUG 1st Gen. Daughter ID: -13 | |
TeslaReportAlgo DEBUG Basic daughter level 1 has substructure consisting of: | |
TeslaReportAlgo DEBUG 10010 | |
TeslaReportAlgo DEBUG 803 | |
TeslaReportAlgo DEBUG 11050 | |
TeslaReportAlgo DEBUG 10010 | |
TeslaReportAlgo DEBUG Available information | |
TeslaReportAlgo DEBUG 0#Particle.particleID.pid = -13 | |
TeslaReportAlgo DEBUG 1#Particle.measuredMass = 105.658 | |
TeslaReportAlgo DEBUG 10#Particle.momCov00 = 54.3152 | |
TeslaReportAlgo DEBUG 11#Particle.momCov11 = 42.6486 | |
TeslaReportAlgo DEBUG 12#Particle.momCov22 = 6035.54 | |
TeslaReportAlgo DEBUG 13#Particle.momCov33 = 6119.31 | |
TeslaReportAlgo DEBUG 14#Particle.momCov10 = -40.68 | |
TeslaReportAlgo DEBUG 15#Particle.momCov20 = -537.382 | |
TeslaReportAlgo DEBUG 16#Particle.momCov21 = 466.354 | |
TeslaReportAlgo DEBUG 17#Particle.momCov30 = -541.611 | |
TeslaReportAlgo DEBUG 18#Particle.momCov31 = 470.003 | |
TeslaReportAlgo DEBUG 19#Particle.momCov32 = 6077.24 | |
TeslaReportAlgo DEBUG 2#Particle.referencePoint.z = 19.2676 | |
TeslaReportAlgo DEBUG 20#Particle.posmomCov00 = -0.0279813 | |
TeslaReportAlgo DEBUG 21#Particle.posmomCov11 = -0.0381322 | |
TeslaReportAlgo DEBUG 22#Particle.posmomCov22 = 0 | |
TeslaReportAlgo DEBUG 23#Particle.posmomCov10 = -0.0129006 | |
TeslaReportAlgo DEBUG 24#Particle.posmomCov01 = -0.00444423 | |
TeslaReportAlgo DEBUG 25#Particle.posmomCov20 = -0.0640704 | |
TeslaReportAlgo DEBUG 26#Particle.posmomCov02 = 0 | |
TeslaReportAlgo DEBUG 27#Particle.posmomCov21 = -0.0410032 | |
TeslaReportAlgo DEBUG 28#Particle.posmomCov12 = 0 | |
TeslaReportAlgo DEBUG 29#Particle.posmomCov30 = -0.062095 | |
TeslaReportAlgo DEBUG 3#Particle.referencePoint.x = 0.0201275 | |
TeslaReportAlgo DEBUG 30#Particle.posmomCov31 = -0.0432178 | |
TeslaReportAlgo DEBUG 31#Particle.posmomCov32 = 0 | |
TeslaReportAlgo DEBUG 32#Particle.posCov00 = 0.000216657 | |
TeslaReportAlgo DEBUG 33#Particle.posCov11 = 0.000229391 | |
TeslaReportAlgo DEBUG 34#Particle.posCov22 = 0 | |
TeslaReportAlgo DEBUG 35#Particle.posCov10 = 7.75728e-05 | |
TeslaReportAlgo DEBUG 36#Particle.posCov20 = 0 | |
TeslaReportAlgo DEBUG 37#Particle.posCov21 = 0 | |
TeslaReportAlgo DEBUG 4#Particle.referencePoint.y = 0.0253168 | |
TeslaReportAlgo DEBUG 5#Particle.slopes.x = -0.0903526 | |
TeslaReportAlgo DEBUG 6#Particle.slopes.y = 0.0765401 | |
TeslaReportAlgo DEBUG 7#Particle.1/p = 4.98089e-05 | |
TeslaReportAlgo DEBUG 8#Particle.conflevel = 0.250063 | |
TeslaReportAlgo DEBUG 9#Particle.massErr = 0 | |
TeslaReportAlgo DEBUG p = 20076.7 | |
TeslaReportAlgo DEBUG p (par_mom) = 20076.7 | |
TeslaReportAlgo DEBUG pT (par_mom) = 2360.88 | |
TeslaReportAlgo DEBUG Particle measured mass = 105.658 | |
TeslaReportAlgo DEBUG Particle CL = 0.250063 | |
TeslaReportAlgo DEBUG Available information (track) | |
TeslaReportAlgo DEBUG 0#Track.firstState.z = 19.2676 | |
TeslaReportAlgo DEBUG 1#Track.firstState.x = 0.0201275 | |
TeslaReportAlgo DEBUG 10#Track.flags = 2.19556e+06 | |
TeslaReportAlgo DEBUG 11#Track.lastState.z = 11900 | |
TeslaReportAlgo DEBUG 12#Track.lastState.x = -1495.87 | |
TeslaReportAlgo DEBUG 13#Track.lastState.y = 912.801 | |
TeslaReportAlgo DEBUG 14#Track.lastState.tx = -0.154786 | |
TeslaReportAlgo DEBUG 15#Track.lastState.ty = 0.0767318 | |
TeslaReportAlgo DEBUG 16#Track.lastState.qOverP = 4.9935e-05 | |
TeslaReportAlgo DEBUG 2#Track.firstState.y = 0.0253168 | |
TeslaReportAlgo DEBUG 3#Track.firstState.tx = -0.0903526 | |
TeslaReportAlgo DEBUG 4#Track.firstState.ty = 0.0765401 | |
TeslaReportAlgo DEBUG 5#Track.firstState.qOverP = 4.98089e-05 | |
TeslaReportAlgo DEBUG 6#Track.chi2PerDoF = 1.07184 | |
TeslaReportAlgo DEBUG 7#Track.nDoF = 34 | |
TeslaReportAlgo DEBUG 8#Track.Likelihood = 999 | |
TeslaReportAlgo DEBUG 9#Track.GhostProb = 999 | |
TeslaReportAlgo DEBUG FastTTValidationTool/ValidateWithTT = 1 | |
TeslaReportAlgo DEBUG MatchVeloMuon = 1 | |
TeslaReportAlgo DEBUG PatForwardTool/LooseForward = 1 | |
TeslaReportAlgo DEBUG PatForwardTool/TightForward = 1 | |
TeslaReportAlgo DEBUG Track #chi^{2}/DoF = 1.07184 | |
TeslaReportAlgo DEBUG Track extra for Rep v2, adding last state | |
TeslaReportAlgo DEBUG Track details added | |
TeslaReportAlgo DEBUG Available information (proto) | |
TeslaReportAlgo DEBUG 0#Proto.extraInfo.IsPhoton = -1000 | |
TeslaReportAlgo DEBUG Proto isPhoton = -1000 | |
TeslaReportAlgo DEBUG ProtoParticle details added | |
TeslaReportAlgo DEBUG Available information (muon) | |
TeslaReportAlgo DEBUG 0#Muon.MuonLLMu = -0.941865 | |
TeslaReportAlgo DEBUG 1#Muon.MuonLLBg = -5.01849 | |
TeslaReportAlgo DEBUG 2#Muon.NShared = 0 | |
TeslaReportAlgo DEBUG 3#Muon.Status = 31 | |
TeslaReportAlgo DEBUG 4#Muon.IsMuon = 1 | |
TeslaReportAlgo DEBUG 5#Muon.IsMuonLoose = 1 | |
TeslaReportAlgo DEBUG 6#Muon.IsMuonTight = 1 | |
TeslaReportAlgo DEBUG Muon LLMu = -0.941865 | |
TeslaReportAlgo DEBUG MuonPID details added | |
TeslaReportAlgo DEBUG Available information (track) | |
TeslaReportAlgo DEBUG 0#Track.firstState.z = 9450 | |
TeslaReportAlgo DEBUG 1#Track.firstState.x = -1117.31 | |
TeslaReportAlgo DEBUG 10#Track.flags = 167 | |
TeslaReportAlgo DEBUG 11#Track.lastState.z = 9450 | |
TeslaReportAlgo DEBUG 12#Track.lastState.x = -1117.31 | |
TeslaReportAlgo DEBUG 13#Track.lastState.y = 724.85 | |
TeslaReportAlgo DEBUG 14#Track.lastState.tx = -0.153914 | |
TeslaReportAlgo DEBUG 15#Track.lastState.ty = 0.076699 | |
TeslaReportAlgo DEBUG 16#Track.lastState.qOverP = 4.99056e-05 | |
TeslaReportAlgo DEBUG 2#Track.firstState.y = 724.85 | |
TeslaReportAlgo DEBUG 3#Track.firstState.tx = -0.153914 | |
TeslaReportAlgo DEBUG 4#Track.firstState.ty = 0.076699 | |
TeslaReportAlgo DEBUG 5#Track.firstState.qOverP = 4.99056e-05 | |
TeslaReportAlgo DEBUG 6#Track.chi2PerDoF = 0 | |
TeslaReportAlgo DEBUG 7#Track.nDoF = 0 | |
TeslaReportAlgo DEBUG 8#Track.Likelihood = 999 | |
TeslaReportAlgo DEBUG 9#Track.GhostProb = 999 | |
TeslaReportAlgo DEBUG Track #chi^{2}/DoF = 0 | |
TeslaReportAlgo DEBUG Track extra for Rep v2, adding last state | |
TeslaReportAlgo DEBUG Track details added | |
TeslaReportAlgo DEBUG Starting to tie pieces together | |
TeslaReportAlgo DEBUG Pieces tied together | |
TeslaReportAlgo DEBUG Daughter level 1 CLASS ID = 801 | |
TeslaReportAlgo DEBUG 1st Gen. Daughter ID: 13 | |
TeslaReportAlgo DEBUG Basic daughter level 1 has substructure consisting of: | |
TeslaReportAlgo DEBUG 10010 | |
TeslaReportAlgo DEBUG 803 | |
TeslaReportAlgo DEBUG 11050 | |
TeslaReportAlgo DEBUG 10010 | |
TeslaReportAlgo DEBUG Available information | |
TeslaReportAlgo DEBUG 0#Particle.particleID.pid = 13 | |
TeslaReportAlgo DEBUG 1#Particle.measuredMass = 105.658 | |
TeslaReportAlgo DEBUG 10#Particle.momCov00 = 85.3354 | |
TeslaReportAlgo DEBUG 11#Particle.momCov11 = 41.519 | |
TeslaReportAlgo DEBUG 12#Particle.momCov22 = 6243.38 | |
TeslaReportAlgo DEBUG 13#Particle.momCov33 = 6357.85 | |
TeslaReportAlgo DEBUG 14#Particle.momCov10 = 50.391 | |
TeslaReportAlgo DEBUG 15#Particle.momCov20 = -706.823 | |
TeslaReportAlgo DEBUG 16#Particle.momCov21 = -464.498 | |
TeslaReportAlgo DEBUG 17#Particle.momCov30 = -713.699 | |
TeslaReportAlgo DEBUG 18#Particle.momCov31 = -469.008 | |
TeslaReportAlgo DEBUG 19#Particle.momCov32 = 6300.32 | |
TeslaReportAlgo DEBUG 2#Particle.referencePoint.z = 19.1093 | |
TeslaReportAlgo DEBUG 20#Particle.posmomCov00 = -0.0277092 | |
TeslaReportAlgo DEBUG 21#Particle.posmomCov11 = -0.0352077 | |
TeslaReportAlgo DEBUG 22#Particle.posmomCov22 = 0 | |
TeslaReportAlgo DEBUG 23#Particle.posmomCov10 = 0.0156737 | |
TeslaReportAlgo DEBUG 24#Particle.posmomCov01 = 0.0222147 | |
TeslaReportAlgo DEBUG 25#Particle.posmomCov20 = 0.0281204 | |
TeslaReportAlgo DEBUG 26#Particle.posmomCov02 = 0 | |
TeslaReportAlgo DEBUG 27#Particle.posmomCov21 = -0.0384881 | |
TeslaReportAlgo DEBUG 28#Particle.posmomCov12 = 0 | |
TeslaReportAlgo DEBUG 29#Particle.posmomCov30 = 0.0297925 | |
TeslaReportAlgo DEBUG 3#Particle.referencePoint.x = -0.0252887 | |
TeslaReportAlgo DEBUG 30#Particle.posmomCov31 = -0.0379971 | |
TeslaReportAlgo DEBUG 31#Particle.posmomCov32 = 0 | |
TeslaReportAlgo DEBUG 32#Particle.posCov00 = 0.000150982 | |
TeslaReportAlgo DEBUG 33#Particle.posCov11 = 0.000269059 | |
TeslaReportAlgo DEBUG 34#Particle.posCov22 = 0 | |
TeslaReportAlgo DEBUG 35#Particle.posCov10 = -0.000153412 | |
TeslaReportAlgo DEBUG 36#Particle.posCov20 = 0 | |
TeslaReportAlgo DEBUG 37#Particle.posCov21 = 0 | |
TeslaReportAlgo DEBUG 4#Particle.referencePoint.y = 0.0392257 | |
TeslaReportAlgo DEBUG 5#Particle.slopes.x = -0.112715 | |
TeslaReportAlgo DEBUG 6#Particle.slopes.y = -0.0751901 | |
TeslaReportAlgo DEBUG 7#Particle.1/p = 4.90071e-05 | |
TeslaReportAlgo DEBUG 8#Particle.conflevel = 0.250063 | |
TeslaReportAlgo DEBUG 9#Particle.massErr = 0 | |
TeslaReportAlgo DEBUG p = 20405.2 | |
TeslaReportAlgo DEBUG p (par_mom) = 20405.2 | |
TeslaReportAlgo DEBUG pT (par_mom) = 2739.72 | |
TeslaReportAlgo DEBUG Particle measured mass = 105.658 | |
TeslaReportAlgo DEBUG Particle CL = 0.250063 | |
TeslaReportAlgo DEBUG Available information (track) | |
TeslaReportAlgo DEBUG 0#Track.firstState.z = 19.1093 | |
TeslaReportAlgo DEBUG 1#Track.firstState.x = -0.0252887 | |
TeslaReportAlgo DEBUG 10#Track.flags = 2.19556e+06 | |
TeslaReportAlgo DEBUG 11#Track.lastState.z = 11900 | |
TeslaReportAlgo DEBUG 12#Track.lastState.x = -924.509 | |
TeslaReportAlgo DEBUG 13#Track.lastState.y = -886.033 | |
TeslaReportAlgo DEBUG 14#Track.lastState.tx = -0.0495341 | |
TeslaReportAlgo DEBUG 15#Track.lastState.ty = -0.0742317 | |
TeslaReportAlgo DEBUG 16#Track.lastState.qOverP = -4.9132e-05 | |
TeslaReportAlgo DEBUG 2#Track.firstState.y = 0.0392257 | |
TeslaReportAlgo DEBUG 3#Track.firstState.tx = -0.112715 | |
TeslaReportAlgo DEBUG 4#Track.firstState.ty = -0.0751901 | |
TeslaReportAlgo DEBUG 5#Track.firstState.qOverP = -4.90071e-05 | |
TeslaReportAlgo DEBUG 6#Track.chi2PerDoF = 1.08167 | |
TeslaReportAlgo DEBUG 7#Track.nDoF = 34 | |
TeslaReportAlgo DEBUG 8#Track.Likelihood = 999 | |
TeslaReportAlgo DEBUG 9#Track.GhostProb = 999 | |
TeslaReportAlgo DEBUG MatchVeloMuon = 1 | |
TeslaReportAlgo DEBUG PatForwardTool/LooseForward = 1 | |
TeslaReportAlgo DEBUG Track #chi^{2}/DoF = 1.08167 | |
TeslaReportAlgo DEBUG Track extra for Rep v2, adding last state | |
TeslaReportAlgo DEBUG Track details added | |
TeslaReportAlgo DEBUG Available information (proto) | |
TeslaReportAlgo DEBUG 0#Proto.extraInfo.IsPhoton = -1000 | |
TeslaReportAlgo DEBUG Proto isPhoton = -1000 | |
TeslaReportAlgo DEBUG ProtoParticle details added | |
TeslaReportAlgo DEBUG Available information (muon) | |
TeslaReportAlgo DEBUG 0#Muon.MuonLLMu = -0.267749 | |
TeslaReportAlgo DEBUG 1#Muon.MuonLLBg = -4.19815 | |
TeslaReportAlgo DEBUG 2#Muon.NShared = 0 | |
TeslaReportAlgo DEBUG 3#Muon.Status = 31 | |
TeslaReportAlgo DEBUG 4#Muon.IsMuon = 1 | |
TeslaReportAlgo DEBUG 5#Muon.IsMuonLoose = 1 | |
TeslaReportAlgo DEBUG 6#Muon.IsMuonTight = 1 | |
TeslaReportAlgo DEBUG Muon LLMu = -0.267749 | |
TeslaReportAlgo DEBUG MuonPID details added | |
TeslaReportAlgo DEBUG Available information (track) | |
TeslaReportAlgo DEBUG 0#Track.firstState.z = 9450 | |
TeslaReportAlgo DEBUG 1#Track.firstState.x = -802.459 | |
TeslaReportAlgo DEBUG 10#Track.flags = 167 | |
TeslaReportAlgo DEBUG 11#Track.lastState.z = 9450 | |
TeslaReportAlgo DEBUG 12#Track.lastState.x = -802.459 | |
TeslaReportAlgo DEBUG 13#Track.lastState.y = -704.109 | |
TeslaReportAlgo DEBUG 14#Track.lastState.tx = -0.0504178 | |
TeslaReportAlgo DEBUG 15#Track.lastState.ty = -0.0742911 | |
TeslaReportAlgo DEBUG 16#Track.lastState.qOverP = -4.91033e-05 | |
TeslaReportAlgo DEBUG 2#Track.firstState.y = -704.109 | |
TeslaReportAlgo DEBUG 3#Track.firstState.tx = -0.0504178 | |
TeslaReportAlgo DEBUG 4#Track.firstState.ty = -0.0742911 | |
TeslaReportAlgo DEBUG 5#Track.firstState.qOverP = -4.91033e-05 | |
TeslaReportAlgo DEBUG 6#Track.chi2PerDoF = 0 | |
TeslaReportAlgo DEBUG 7#Track.nDoF = 0 | |
TeslaReportAlgo DEBUG 8#Track.Likelihood = 999 | |
TeslaReportAlgo DEBUG 9#Track.GhostProb = 999 | |
TeslaReportAlgo DEBUG Track #chi^{2}/DoF = 0 | |
TeslaReportAlgo DEBUG Track extra for Rep v2, adding last state | |
TeslaReportAlgo DEBUG Track details added | |
TeslaReportAlgo DEBUG Starting to tie pieces together | |
TeslaReportAlgo DEBUG Pieces tied together | |
TeslaReportAlgo DEBUG Daughter level 1 CLASS ID = 802 | |
TeslaReportAlgo DEBUG Available information (vertex) | |
TeslaReportAlgo DEBUG 0#Vertex.chi2 = 10.0667 | |
TeslaReportAlgo DEBUG 1#Vertex.ndf = 1 | |
TeslaReportAlgo DEBUG 10#Vertex.cov20 = -0.00275635 | |
TeslaReportAlgo DEBUG 11#Vertex.cov21 = -0.000148391 | |
TeslaReportAlgo DEBUG 2#Vertex.position.x = 0.000427127 | |
TeslaReportAlgo DEBUG 3#Vertex.position.y = 0.00746708 | |
TeslaReportAlgo DEBUG 4#Vertex.position.z = 19.125 | |
TeslaReportAlgo DEBUG 5#Vertex.technique = 0 | |
TeslaReportAlgo DEBUG 6#Vertex.cov00 = 0.000452555 | |
TeslaReportAlgo DEBUG 7#Vertex.cov11 = 8.95647e-05 | |
TeslaReportAlgo DEBUG 8#Vertex.cov22 = 0.0192595 | |
TeslaReportAlgo DEBUG 9#Vertex.cov10 = -9.14077e-06 | |
TeslaReportAlgo DEBUG Decay vertex chi2 = 10.0667 | |
TeslaReportAlgo DEBUG Setting mother decay vertex | |
TeslaReportAlgo DEBUG End of algorithm execution | |
EventSelector SUCCESS Reading Event record 21. Record number within stream 1: 21 | |
TeslaReportAlgo DEBUG ==> Execute | |
TeslaReportAlgo... DEBUG SelReports version check requested | |
TeslaReportAlgo... DEBUG The object of type 'LHCb::HltSelReports*' has been retrieved from TS at address 'Hlt2/SelReports' | |
TeslaReportAlgo... DEBUG Examining mother report | |
TeslaReportAlgo... DEBUG Mother report is of a particle | |
TeslaReportAlgo... DEBUG ReportCheckTool finds verision 2 | |
TeslaReportAlgo DEBUG VersionNum = 2 | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Particle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Particles' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::ProtoParticle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Protos' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Vertex,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Vertices' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Track,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Tracks' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::RichPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/RichPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::MuonPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/MuonPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::VertexBase,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Rec/Vertex/Primary' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'LHCb::Relation1D<LHCb::Particle,LHCb::VertexBase>' is registered in TS at address 'Tesla/Particle2VertexRelations' | |
TeslaReportAlgo DEBUG The object of type 'LHCb::HltVertexReports*' has been retrieved from TS at address 'Hlt1/VertexReports' | |
TeslaReportAlgo DEBUG Available vertex reports: | |
TeslaReportAlgo DEBUG PV3D | |
TeslaReportAlgo DEBUG ProtoPV3D | |
TeslaReportAlgo DEBUG Vertex chi2= 23.5396, ndf =29 | |
TeslaReportAlgo DEBUG Vertex key= 0 | |
TeslaReportAlgo DEBUG Vertex chi2= 18.9348, ndf =29 | |
TeslaReportAlgo DEBUG Vertex key= 1 | |
TeslaReportAlgo DEBUG Vertex chi2= 17.6767, ndf =27 | |
TeslaReportAlgo DEBUG Vertex key= 2 | |
TeslaReportAlgo DEBUG Vertex chi2= 10.1931, ndf =13 | |
TeslaReportAlgo DEBUG Vertex key= 3 | |
TeslaReportAlgo DEBUG The object of type 'LHCb::HltSelReports*' has been retrieved from TS at address 'Hlt2/SelReports' | |
TeslaReportAlgo DEBUG Available reports: | |
TeslaReportAlgo DEBUG Hlt2DiMuonDecision | |
TeslaReportAlgo DEBUG Hlt2DiMuonJPsiDecision | |
TeslaReportAlgo DEBUG Hlt2Global | |
TeslaReportAlgo DEBUG Hlt2SingleMuonLowPTDecision | |
TeslaReportAlgo DEBUG Required line has been fired | |
TeslaReportAlgo DEBUG Reference: | |
TeslaReportAlgo DEBUG Particle class ID = 801 | |
TeslaReportAlgo DEBUG Track class ID = 10010 | |
TeslaReportAlgo DEBUG RecVertex class ID = 10030 | |
TeslaReportAlgo DEBUG Vertex class ID = 802 | |
TeslaReportAlgo DEBUG ProtoParticle class ID = 803 | |
TeslaReportAlgo DEBUG { summarizedObjectCLID : 1 numericalInfo : { 0#SelectionID:50201 , } substructure : { 13:801 , } lhcbIDs : { } } | |
TeslaReportAlgo DEBUG MOTHER CLASS ID = 1 | |
TeslaReportAlgo DEBUG LHCbIDs.size() = 0 | |
TeslaReportAlgo DEBUG Number of triggered candidates = 1 | |
TeslaReportAlgo DEBUG [0xb568200] | |
TeslaReportAlgo DEBUG Starting loop over triggered candidates | |
TeslaReportAlgo DEBUG Mother object CLASS ID = 801 | |
TeslaReportAlgo DEBUG Found mother with ID: 443 | |
TeslaReportAlgo DEBUG Mother has substructure consisting of: | |
TeslaReportAlgo DEBUG 801 | |
TeslaReportAlgo DEBUG 801 | |
TeslaReportAlgo DEBUG 802 | |
TeslaReportAlgo DEBUG Available information | |
TeslaReportAlgo DEBUG 0#Particle.particleID.pid = 443 | |
TeslaReportAlgo DEBUG 1#Particle.measuredMass = 3101.79 | |
TeslaReportAlgo DEBUG 10#Particle.momCov00 = 192.59 | |
TeslaReportAlgo DEBUG 11#Particle.momCov11 = 280.284 | |
TeslaReportAlgo DEBUG 12#Particle.momCov22 = 427823 | |
TeslaReportAlgo DEBUG 13#Particle.momCov33 = 428213 | |
TeslaReportAlgo DEBUG 14#Particle.momCov10 = 123.271 | |
TeslaReportAlgo DEBUG 15#Particle.momCov20 = -8108.3 | |
TeslaReportAlgo DEBUG 16#Particle.momCov21 = -5260.61 | |
TeslaReportAlgo DEBUG 17#Particle.momCov30 = -8113.18 | |
TeslaReportAlgo DEBUG 18#Particle.momCov31 = -5267.23 | |
TeslaReportAlgo DEBUG 19#Particle.momCov32 = 428018 | |
TeslaReportAlgo DEBUG 2#Particle.referencePoint.z = -77.3291 | |
TeslaReportAlgo DEBUG 20#Particle.posmomCov00 = -0.0770871 | |
TeslaReportAlgo DEBUG 21#Particle.posmomCov11 = -0.157591 | |
TeslaReportAlgo DEBUG 22#Particle.posmomCov22 = 1.62915 | |
TeslaReportAlgo DEBUG 23#Particle.posmomCov10 = -0.0451099 | |
TeslaReportAlgo DEBUG 24#Particle.posmomCov01 = -0.00330636 | |
TeslaReportAlgo DEBUG 25#Particle.posmomCov20 = -0.0944292 | |
TeslaReportAlgo DEBUG 26#Particle.posmomCov02 = 0.189272 | |
TeslaReportAlgo DEBUG 27#Particle.posmomCov21 = -0.054125 | |
TeslaReportAlgo DEBUG 28#Particle.posmomCov12 = 2.40406 | |
TeslaReportAlgo DEBUG 29#Particle.posmomCov30 = -0.0943402 | |
TeslaReportAlgo DEBUG 3#Particle.referencePoint.x = -0.0165042 | |
TeslaReportAlgo DEBUG 30#Particle.posmomCov31 = -0.0542376 | |
TeslaReportAlgo DEBUG 31#Particle.posmomCov32 = 1.69102 | |
TeslaReportAlgo DEBUG 32#Particle.posCov00 = 0.000480411 | |
TeslaReportAlgo DEBUG 33#Particle.posCov11 = 0.0008723 | |
TeslaReportAlgo DEBUG 34#Particle.posCov22 = 0.685986 | |
TeslaReportAlgo DEBUG 35#Particle.posCov10 = 0.000440952 | |
TeslaReportAlgo DEBUG 36#Particle.posCov20 = -0.0144267 | |
TeslaReportAlgo DEBUG 37#Particle.posCov21 = -0.0215057 | |
TeslaReportAlgo DEBUG 4#Particle.referencePoint.y = -0.0293573 | |
TeslaReportAlgo DEBUG 5#Particle.slopes.x = -0.019025 | |
TeslaReportAlgo DEBUG 6#Particle.slopes.y = -0.0125432 | |
TeslaReportAlgo DEBUG 7#Particle.1/p = 6.49877e-06 | |
TeslaReportAlgo DEBUG 8#Particle.conflevel = -1 | |
TeslaReportAlgo DEBUG 9#Particle.massErr = 15.3094 | |
TeslaReportAlgo DEBUG p = 153875 | |
TeslaReportAlgo DEBUG p (par_mom) = 153875 | |
TeslaReportAlgo DEBUG pT (par_mom) = 3505.57 | |
TeslaReportAlgo DEBUG Particle measured mass = 3101.79 | |
TeslaReportAlgo DEBUG Particle CL = -1 | |
TeslaReportAlgo DEBUG Daughter level 1 CLASS ID = 801 | |
TeslaReportAlgo DEBUG 1st Gen. Daughter ID: -13 | |
TeslaReportAlgo DEBUG Basic daughter level 1 has substructure consisting of: | |
TeslaReportAlgo DEBUG 10010 | |
TeslaReportAlgo DEBUG 803 | |
TeslaReportAlgo DEBUG 11050 | |
TeslaReportAlgo DEBUG 10010 | |
TeslaReportAlgo DEBUG Available information | |
TeslaReportAlgo DEBUG 0#Particle.particleID.pid = -13 | |
TeslaReportAlgo DEBUG 1#Particle.measuredMass = 105.658 | |
TeslaReportAlgo DEBUG 10#Particle.momCov00 = 101.836 | |
TeslaReportAlgo DEBUG 11#Particle.momCov11 = 31.1723 | |
TeslaReportAlgo DEBUG 12#Particle.momCov22 = 279117 | |
TeslaReportAlgo DEBUG 13#Particle.momCov33 = 279198 | |
TeslaReportAlgo DEBUG 14#Particle.momCov10 = -11.3037 | |
TeslaReportAlgo DEBUG 15#Particle.momCov20 = -4728.95 | |
TeslaReportAlgo DEBUG 16#Particle.momCov21 = 618.911 | |
TeslaReportAlgo DEBUG 17#Particle.momCov30 = -4730.01 | |
TeslaReportAlgo DEBUG 18#Particle.momCov31 = 619.079 | |
TeslaReportAlgo DEBUG 19#Particle.momCov32 = 279158 | |
TeslaReportAlgo DEBUG 2#Particle.referencePoint.z = -76.8011 | |
TeslaReportAlgo DEBUG 20#Particle.posmomCov00 = -0.113521 | |
TeslaReportAlgo DEBUG 21#Particle.posmomCov11 = -0.166204 | |
TeslaReportAlgo DEBUG 22#Particle.posmomCov22 = 0 | |
TeslaReportAlgo DEBUG 23#Particle.posmomCov10 = 0.00727573 | |
TeslaReportAlgo DEBUG 24#Particle.posmomCov01 = 0.00842726 | |
TeslaReportAlgo DEBUG 25#Particle.posmomCov20 = 0.0267416 | |
TeslaReportAlgo DEBUG 26#Particle.posmomCov02 = 0 | |
TeslaReportAlgo DEBUG 27#Particle.posmomCov21 = -0.0861734 | |
TeslaReportAlgo DEBUG 28#Particle.posmomCov12 = 0 | |
TeslaReportAlgo DEBUG 29#Particle.posmomCov30 = 0.0286782 | |
TeslaReportAlgo DEBUG 3#Particle.referencePoint.x = -0.0193234 | |
TeslaReportAlgo DEBUG 30#Particle.posmomCov31 = -0.0866644 | |
TeslaReportAlgo DEBUG 31#Particle.posmomCov32 = 0 | |
TeslaReportAlgo DEBUG 32#Particle.posCov00 = 0.000648801 | |
TeslaReportAlgo DEBUG 33#Particle.posCov11 = 0.00101026 | |
TeslaReportAlgo DEBUG 34#Particle.posCov22 = 0 | |
TeslaReportAlgo DEBUG 35#Particle.posCov10 = -5.86595e-05 | |
TeslaReportAlgo DEBUG 36#Particle.posCov20 = 0 | |
TeslaReportAlgo DEBUG 37#Particle.posCov21 = 0 | |
TeslaReportAlgo DEBUG 4#Particle.referencePoint.y = -0.0300856 | |
TeslaReportAlgo DEBUG 5#Particle.slopes.x = -0.0169576 | |
TeslaReportAlgo DEBUG 6#Particle.slopes.y = 0.00217094 | |
TeslaReportAlgo DEBUG 7#Particle.1/p = 1.00452e-05 | |
TeslaReportAlgo DEBUG 8#Particle.conflevel = 0.250063 | |
TeslaReportAlgo DEBUG 9#Particle.massErr = 0 | |
TeslaReportAlgo DEBUG p = 99549.8 | |
TeslaReportAlgo DEBUG p (par_mom) = 99549.8 | |
TeslaReportAlgo DEBUG pT (par_mom) = 1701.66 | |
TeslaReportAlgo DEBUG Particle measured mass = 105.658 | |
TeslaReportAlgo DEBUG Particle CL = 0.250063 | |
TeslaReportAlgo DEBUG Available information (track) | |
TeslaReportAlgo DEBUG 0#Track.firstState.z = -76.8011 | |
TeslaReportAlgo DEBUG 1#Track.firstState.x = -0.0193234 | |
TeslaReportAlgo DEBUG 10#Track.flags = 2.19556e+06 | |
TeslaReportAlgo DEBUG 11#Track.lastState.z = 11900 | |
TeslaReportAlgo DEBUG 12#Track.lastState.x = -286.396 | |
TeslaReportAlgo DEBUG 13#Track.lastState.y = 25.7979 | |
TeslaReportAlgo DEBUG 14#Track.lastState.tx = -0.0297115 | |
TeslaReportAlgo DEBUG 15#Track.lastState.ty = 0.00214192 | |
TeslaReportAlgo DEBUG 16#Track.lastState.qOverP = 1.00513e-05 | |
TeslaReportAlgo DEBUG 2#Track.firstState.y = -0.0300856 | |
TeslaReportAlgo DEBUG 3#Track.firstState.tx = -0.0169576 | |
TeslaReportAlgo DEBUG 4#Track.firstState.ty = 0.00217094 | |
TeslaReportAlgo DEBUG 5#Track.firstState.qOverP = 1.00452e-05 | |
TeslaReportAlgo DEBUG 6#Track.chi2PerDoF = 1.16216 | |
TeslaReportAlgo DEBUG 7#Track.nDoF = 20 | |
TeslaReportAlgo DEBUG 8#Track.Likelihood = 999 | |
TeslaReportAlgo DEBUG 9#Track.GhostProb = 999 | |
TeslaReportAlgo DEBUG FastTTValidationTool/ValidateWithTT = 1 | |
TeslaReportAlgo DEBUG MatchVeloMuon = 1 | |
TeslaReportAlgo DEBUG PatForwardTool/LooseForward = 1 | |
TeslaReportAlgo DEBUG PatForwardTool/TightForward = 1 | |
TeslaReportAlgo DEBUG Track #chi^{2}/DoF = 1.16216 | |
TeslaReportAlgo DEBUG Track extra for Rep v2, adding last state | |
TeslaReportAlgo DEBUG Track details added | |
TeslaReportAlgo DEBUG Available information (proto) | |
TeslaReportAlgo DEBUG 0#Proto.extraInfo.IsPhoton = -1000 | |
TeslaReportAlgo DEBUG Proto isPhoton = -1000 | |
TeslaReportAlgo DEBUG ProtoParticle details added | |
TeslaReportAlgo DEBUG Available information (muon) | |
TeslaReportAlgo DEBUG 0#Muon.MuonLLMu = -0.927099 | |
TeslaReportAlgo DEBUG 1#Muon.MuonLLBg = -5.21169 | |
TeslaReportAlgo DEBUG 2#Muon.NShared = 0 | |
TeslaReportAlgo DEBUG 3#Muon.Status = 31 | |
TeslaReportAlgo DEBUG 4#Muon.IsMuon = 1 | |
TeslaReportAlgo DEBUG 5#Muon.IsMuonLoose = 1 | |
TeslaReportAlgo DEBUG 6#Muon.IsMuonTight = 1 | |
TeslaReportAlgo DEBUG Muon LLMu = -0.927099 | |
TeslaReportAlgo DEBUG MuonPID details added | |
TeslaReportAlgo DEBUG Available information (track) | |
TeslaReportAlgo DEBUG 0#Track.firstState.z = 9450 | |
TeslaReportAlgo DEBUG 1#Track.firstState.x = -213.776 | |
TeslaReportAlgo DEBUG 10#Track.flags = 167 | |
TeslaReportAlgo DEBUG 11#Track.lastState.z = 9450 | |
TeslaReportAlgo DEBUG 12#Track.lastState.x = -213.776 | |
TeslaReportAlgo DEBUG 13#Track.lastState.y = 20.5492 | |
TeslaReportAlgo DEBUG 14#Track.lastState.tx = -0.0294937 | |
TeslaReportAlgo DEBUG 15#Track.lastState.ty = 0.0021434 | |
TeslaReportAlgo DEBUG 16#Track.lastState.qOverP = 1.005e-05 | |
TeslaReportAlgo DEBUG 2#Track.firstState.y = 20.5492 | |
TeslaReportAlgo DEBUG 3#Track.firstState.tx = -0.0294937 | |
TeslaReportAlgo DEBUG 4#Track.firstState.ty = 0.0021434 | |
TeslaReportAlgo DEBUG 5#Track.firstState.qOverP = 1.005e-05 | |
TeslaReportAlgo DEBUG 6#Track.chi2PerDoF = 0 | |
TeslaReportAlgo DEBUG 7#Track.nDoF = 0 | |
TeslaReportAlgo DEBUG 8#Track.Likelihood = 999 | |
TeslaReportAlgo DEBUG 9#Track.GhostProb = 999 | |
TeslaReportAlgo DEBUG Track #chi^{2}/DoF = 0 | |
TeslaReportAlgo DEBUG Track extra for Rep v2, adding last state | |
TeslaReportAlgo DEBUG Track details added | |
TeslaReportAlgo DEBUG Starting to tie pieces together | |
TeslaReportAlgo DEBUG Pieces tied together | |
TeslaReportAlgo DEBUG Daughter level 1 CLASS ID = 801 | |
TeslaReportAlgo DEBUG 1st Gen. Daughter ID: 13 | |
TeslaReportAlgo DEBUG Basic daughter level 1 has substructure consisting of: | |
TeslaReportAlgo DEBUG 10010 | |
TeslaReportAlgo DEBUG 803 | |
TeslaReportAlgo DEBUG 11050 | |
TeslaReportAlgo DEBUG 10010 | |
TeslaReportAlgo DEBUG Available information | |
TeslaReportAlgo DEBUG 0#Particle.particleID.pid = 13 | |
TeslaReportAlgo DEBUG 1#Particle.measuredMass = 105.658 | |
TeslaReportAlgo DEBUG 10#Particle.momCov00 = 94.1782 | |
TeslaReportAlgo DEBUG 11#Particle.momCov11 = 249.405 | |
TeslaReportAlgo DEBUG 12#Particle.momCov22 = 148725 | |
TeslaReportAlgo DEBUG 13#Particle.momCov33 = 149034 | |
TeslaReportAlgo DEBUG 14#Particle.momCov10 = 133.574 | |
TeslaReportAlgo DEBUG 15#Particle.momCov20 = -3387.4 | |
TeslaReportAlgo DEBUG 16#Particle.momCov21 = -5877.17 | |
TeslaReportAlgo DEBUG 17#Particle.momCov30 = -3391.3 | |
TeslaReportAlgo DEBUG 18#Particle.momCov31 = -5883.94 | |
TeslaReportAlgo DEBUG 19#Particle.momCov32 = 148880 | |
TeslaReportAlgo DEBUG 2#Particle.referencePoint.z = -78.1945 | |
TeslaReportAlgo DEBUG 20#Particle.posmomCov00 = -0.0582219 | |
TeslaReportAlgo DEBUG 21#Particle.posmomCov11 = -0.0620182 | |
TeslaReportAlgo DEBUG 22#Particle.posmomCov22 = 0 | |
TeslaReportAlgo DEBUG 23#Particle.posmomCov10 = 0.00543879 | |
TeslaReportAlgo DEBUG 24#Particle.posmomCov01 = 0.00123701 | |
TeslaReportAlgo DEBUG 25#Particle.posmomCov20 = -0.0922055 | |
TeslaReportAlgo DEBUG 26#Particle.posmomCov02 = 0 | |
TeslaReportAlgo DEBUG 27#Particle.posmomCov21 = 0.0171723 | |
TeslaReportAlgo DEBUG 28#Particle.posmomCov12 = 0 | |
TeslaReportAlgo DEBUG 29#Particle.posmomCov30 = -0.0909967 | |
TeslaReportAlgo DEBUG 3#Particle.referencePoint.x = 0.000961053 | |
TeslaReportAlgo DEBUG 30#Particle.posmomCov31 = 0.0195741 | |
TeslaReportAlgo DEBUG 31#Particle.posmomCov32 = 0 | |
TeslaReportAlgo DEBUG 32#Particle.posCov00 = 0.000245223 | |
TeslaReportAlgo DEBUG 33#Particle.posCov11 = 0.000248264 | |
TeslaReportAlgo DEBUG 34#Particle.posCov22 = 0 | |
TeslaReportAlgo DEBUG 35#Particle.posCov10 = -1.40537e-05 | |
TeslaReportAlgo DEBUG 36#Particle.posCov20 = 0 | |
TeslaReportAlgo DEBUG 37#Particle.posCov21 = 0 | |
TeslaReportAlgo DEBUG 4#Particle.referencePoint.y = 0.00528732 | |
TeslaReportAlgo DEBUG 5#Particle.slopes.x = -0.022824 | |
TeslaReportAlgo DEBUG 6#Particle.slopes.y = -0.0395113 | |
TeslaReportAlgo DEBUG 7#Particle.1/p = 1.83966e-05 | |
TeslaReportAlgo DEBUG 8#Particle.conflevel = 0.250063 | |
TeslaReportAlgo DEBUG 9#Particle.massErr = 0 | |
TeslaReportAlgo DEBUG p = 54357.8 | |
TeslaReportAlgo DEBUG p (par_mom) = 54357.8 | |
TeslaReportAlgo DEBUG pT (par_mom) = 2477.76 | |
TeslaReportAlgo DEBUG Particle measured mass = 105.658 | |
TeslaReportAlgo DEBUG Particle CL = 0.250063 | |
TeslaReportAlgo DEBUG Available information (track) | |
TeslaReportAlgo DEBUG 0#Track.firstState.z = -78.1945 | |
TeslaReportAlgo DEBUG 1#Track.firstState.x = 0.000961053 | |
TeslaReportAlgo DEBUG 10#Track.flags = 2.19556e+06 | |
TeslaReportAlgo DEBUG 11#Track.lastState.z = 11900 | |
TeslaReportAlgo DEBUG 12#Track.lastState.x = -120.858 | |
TeslaReportAlgo DEBUG 13#Track.lastState.y = -472.234 | |
TeslaReportAlgo DEBUG 14#Track.lastState.tx = 0.000559365 | |
TeslaReportAlgo DEBUG 15#Track.lastState.ty = -0.0393795 | |
TeslaReportAlgo DEBUG 16#Track.lastState.qOverP = -1.84177e-05 | |
TeslaReportAlgo DEBUG 2#Track.firstState.y = 0.00528732 | |
TeslaReportAlgo DEBUG 3#Track.firstState.tx = -0.022824 | |
TeslaReportAlgo DEBUG 4#Track.firstState.ty = -0.0395113 | |
TeslaReportAlgo DEBUG 5#Track.firstState.qOverP = -1.83966e-05 | |
TeslaReportAlgo DEBUG 6#Track.chi2PerDoF = 0.766509 | |
TeslaReportAlgo DEBUG 7#Track.nDoF = 41 | |
TeslaReportAlgo DEBUG 8#Track.Likelihood = 999 | |
TeslaReportAlgo DEBUG 9#Track.GhostProb = 999 | |
TeslaReportAlgo DEBUG MatchVeloMuon = 1 | |
TeslaReportAlgo DEBUG PatForwardTool/LooseForward = 1 | |
TeslaReportAlgo DEBUG Track #chi^{2}/DoF = 0.766509 | |
TeslaReportAlgo DEBUG Track extra for Rep v2, adding last state | |
TeslaReportAlgo DEBUG Track details added | |
TeslaReportAlgo DEBUG Available information (proto) | |
TeslaReportAlgo DEBUG 0#Proto.extraInfo.IsPhoton = -1000 | |
TeslaReportAlgo DEBUG Proto isPhoton = -1000 | |
TeslaReportAlgo DEBUG ProtoParticle details added | |
TeslaReportAlgo DEBUG Available information (muon) | |
TeslaReportAlgo DEBUG 0#Muon.MuonLLMu = -1.33522 | |
TeslaReportAlgo DEBUG 1#Muon.MuonLLBg = -5.75392 | |
TeslaReportAlgo DEBUG 2#Muon.NShared = 0 | |
TeslaReportAlgo DEBUG 3#Muon.Status = 31 | |
TeslaReportAlgo DEBUG 4#Muon.IsMuon = 1 | |
TeslaReportAlgo DEBUG 5#Muon.IsMuonLoose = 1 | |
TeslaReportAlgo DEBUG 6#Muon.IsMuonTight = 1 | |
TeslaReportAlgo DEBUG Muon LLMu = -1.33522 | |
TeslaReportAlgo DEBUG MuonPID details added | |
TeslaReportAlgo DEBUG Available information (track) | |
TeslaReportAlgo DEBUG 0#Track.firstState.z = 9450 | |
TeslaReportAlgo DEBUG 1#Track.firstState.x = -121.925 | |
TeslaReportAlgo DEBUG 10#Track.flags = 167 | |
TeslaReportAlgo DEBUG 11#Track.lastState.z = 9450 | |
TeslaReportAlgo DEBUG 12#Track.lastState.x = -121.925 | |
TeslaReportAlgo DEBUG 13#Track.lastState.y = -375.75 | |
TeslaReportAlgo DEBUG 14#Track.lastState.tx = 0.00017558 | |
TeslaReportAlgo DEBUG 15#Track.lastState.ty = -0.0393843 | |
TeslaReportAlgo DEBUG 16#Track.lastState.qOverP = -1.84134e-05 | |
TeslaReportAlgo DEBUG 2#Track.firstState.y = -375.75 | |
TeslaReportAlgo DEBUG 3#Track.firstState.tx = 0.00017558 | |
TeslaReportAlgo DEBUG 4#Track.firstState.ty = -0.0393843 | |
TeslaReportAlgo DEBUG 5#Track.firstState.qOverP = -1.84134e-05 | |
TeslaReportAlgo DEBUG 6#Track.chi2PerDoF = 0 | |
TeslaReportAlgo DEBUG 7#Track.nDoF = 0 | |
TeslaReportAlgo DEBUG 8#Track.Likelihood = 999 | |
TeslaReportAlgo DEBUG 9#Track.GhostProb = 999 | |
TeslaReportAlgo DEBUG Track #chi^{2}/DoF = 0 | |
TeslaReportAlgo DEBUG Track extra for Rep v2, adding last state | |
TeslaReportAlgo DEBUG Track details added | |
TeslaReportAlgo DEBUG Starting to tie pieces together | |
TeslaReportAlgo DEBUG Pieces tied together | |
TeslaReportAlgo DEBUG Daughter level 1 CLASS ID = 802 | |
TeslaReportAlgo DEBUG Available information (vertex) | |
TeslaReportAlgo DEBUG 0#Vertex.chi2 = 0.081507 | |
TeslaReportAlgo DEBUG 1#Vertex.ndf = 1 | |
TeslaReportAlgo DEBUG 10#Vertex.cov20 = -0.0144267 | |
TeslaReportAlgo DEBUG 11#Vertex.cov21 = -0.0215057 | |
TeslaReportAlgo DEBUG 2#Vertex.position.x = -0.0165042 | |
TeslaReportAlgo DEBUG 3#Vertex.position.y = -0.0293573 | |
TeslaReportAlgo DEBUG 4#Vertex.position.z = -77.3291 | |
TeslaReportAlgo DEBUG 5#Vertex.technique = 0 | |
TeslaReportAlgo DEBUG 6#Vertex.cov00 = 0.000480411 | |
TeslaReportAlgo DEBUG 7#Vertex.cov11 = 0.0008723 | |
TeslaReportAlgo DEBUG 8#Vertex.cov22 = 0.685986 | |
TeslaReportAlgo DEBUG 9#Vertex.cov10 = 0.000440952 | |
TeslaReportAlgo DEBUG Decay vertex chi2 = 0.081507 | |
TeslaReportAlgo DEBUG Setting mother decay vertex | |
TeslaReportAlgo DEBUG End of algorithm execution | |
TeslaReportAlgo DEBUG ==> Execute | |
TeslaReportAlgo... DEBUG SelReports version check requested | |
TeslaReportAlgo... DEBUG The object of type 'LHCb::HltSelReports*' has been retrieved from TS at address 'Hlt2/SelReports' | |
TeslaReportAlgo... DEBUG Examining mother report | |
TeslaReportAlgo... DEBUG Mother report is of a particle | |
TeslaReportAlgo... DEBUG ReportCheckTool finds verision 2 | |
TeslaReportAlgo DEBUG VersionNum = 2 | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Particle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Particles' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::ProtoParticle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Protos' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Vertex,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Vertices' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Track,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Tracks' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::RichPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/RichPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::MuonPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/MuonPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::VertexBase,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Rec/Vertex/Primary' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'LHCb::Relation1D<LHCb::Particle,LHCb::VertexBase>' is registered in TS at address 'Tesla/Particle2VertexRelations' | |
TeslaReportAlgo DEBUG The object of type 'LHCb::HltVertexReports*' has been retrieved from TS at address 'Hlt1/VertexReports' | |
TeslaReportAlgo DEBUG Available vertex reports: | |
TeslaReportAlgo DEBUG PV3D | |
TeslaReportAlgo DEBUG ProtoPV3D | |
TeslaReportAlgo DEBUG Vertex chi2= 4.28258, ndf =13 | |
TeslaReportAlgo DEBUG Vertex key= 0 | |
TeslaReportAlgo DEBUG The object of type 'LHCb::HltSelReports*' has been retrieved from TS at address 'Hlt2/SelReports' | |
TeslaReportAlgo DEBUG Available reports: | |
TeslaReportAlgo DEBUG Hlt2DiMuonDecision | |
TeslaReportAlgo DEBUG Hlt2DiMuonJPsiDecision | |
TeslaReportAlgo DEBUG Hlt2Global | |
TeslaReportAlgo DEBUG Hlt2SingleMuonLowPTDecision | |
TeslaReportAlgo DEBUG Required line has been fired | |
TeslaReportAlgo DEBUG Reference: | |
TeslaReportAlgo DEBUG Particle class ID = 801 | |
TeslaReportAlgo DEBUG Track class ID = 10010 | |
TeslaReportAlgo DEBUG RecVertex class ID = 10030 | |
TeslaReportAlgo DEBUG Vertex class ID = 802 | |
TeslaReportAlgo DEBUG ProtoParticle class ID = 803 | |
TeslaReportAlgo DEBUG { summarizedObjectCLID : 1 numericalInfo : { 0#SelectionID:50201 , } substructure : { 12:801 , } lhcbIDs : { } } | |
TeslaReportAlgo DEBUG MOTHER CLASS ID = 1 | |
TeslaReportAlgo DEBUG LHCbIDs.size() = 0 | |
TeslaReportAlgo DEBUG Number of triggered candidates = 1 | |
TeslaReportAlgo DEBUG [0xb568a00] | |
TeslaReportAlgo DEBUG Starting loop over triggered candidates | |
TeslaReportAlgo DEBUG Mother object CLASS ID = 801 | |
TeslaReportAlgo DEBUG Found mother with ID: 443 | |
TeslaReportAlgo DEBUG Mother has substructure consisting of: | |
TeslaReportAlgo DEBUG 801 | |
TeslaReportAlgo DEBUG 801 | |
TeslaReportAlgo DEBUG 802 | |
TeslaReportAlgo DEBUG Available information | |
TeslaReportAlgo DEBUG 0#Particle.particleID.pid = 443 | |
TeslaReportAlgo DEBUG 1#Particle.measuredMass = 3116.81 | |
TeslaReportAlgo DEBUG 10#Particle.momCov00 = 186.752 | |
TeslaReportAlgo DEBUG 11#Particle.momCov11 = 85.0391 | |
TeslaReportAlgo DEBUG 12#Particle.momCov22 = 38107.9 | |
TeslaReportAlgo DEBUG 13#Particle.momCov33 = 38315 | |
TeslaReportAlgo DEBUG 14#Particle.momCov10 = 109.662 | |
TeslaReportAlgo DEBUG 15#Particle.momCov20 = 1908.14 | |
TeslaReportAlgo DEBUG 16#Particle.momCov21 = 1020.1 | |
TeslaReportAlgo DEBUG 17#Particle.momCov30 = 1916.06 | |
TeslaReportAlgo DEBUG 18#Particle.momCov31 = 1024.77 | |
TeslaReportAlgo DEBUG 19#Particle.momCov32 = 38211.2 | |
TeslaReportAlgo DEBUG 2#Particle.referencePoint.z = -60.2091 | |
TeslaReportAlgo DEBUG 20#Particle.posmomCov00 = -0.564753 | |
TeslaReportAlgo DEBUG 21#Particle.posmomCov11 = -0.278416 | |
TeslaReportAlgo DEBUG 22#Particle.posmomCov22 = -2.79641 | |
TeslaReportAlgo DEBUG 23#Particle.posmomCov10 = -0.399139 | |
TeslaReportAlgo DEBUG 24#Particle.posmomCov01 = -0.321761 | |
TeslaReportAlgo DEBUG 25#Particle.posmomCov20 = -0.109735 | |
TeslaReportAlgo DEBUG 26#Particle.posmomCov02 = -7.07196 | |
TeslaReportAlgo DEBUG 27#Particle.posmomCov21 = -0.156368 | |
TeslaReportAlgo DEBUG 28#Particle.posmomCov12 = -5.33081 | |
TeslaReportAlgo DEBUG 29#Particle.posmomCov30 = -0.101001 | |
TeslaReportAlgo DEBUG 3#Particle.referencePoint.x = 0.11134 | |
TeslaReportAlgo DEBUG 30#Particle.posmomCov31 = -0.151307 | |
TeslaReportAlgo DEBUG 31#Particle.posmomCov32 = -2.66459 | |
TeslaReportAlgo DEBUG 32#Particle.posCov00 = 0.0118236 | |
TeslaReportAlgo DEBUG 33#Particle.posCov11 = 0.00431478 | |
TeslaReportAlgo DEBUG 34#Particle.posCov22 = 1.99126 | |
TeslaReportAlgo DEBUG 35#Particle.posCov10 = 0.00698294 | |
TeslaReportAlgo DEBUG 36#Particle.posCov20 = 0.152742 | |
TeslaReportAlgo DEBUG 37#Particle.posCov21 = 0.0913979 | |
TeslaReportAlgo DEBUG 4#Particle.referencePoint.y = 0.0651462 | |
TeslaReportAlgo DEBUG 5#Particle.slopes.x = 0.043326 | |
TeslaReportAlgo DEBUG 6#Particle.slopes.y = 0.0209032 | |
TeslaReportAlgo DEBUG 7#Particle.1/p = 1.61159e-05 | |
TeslaReportAlgo DEBUG 8#Particle.conflevel = -1 | |
TeslaReportAlgo DEBUG 9#Particle.massErr = 12.5149 | |
TeslaReportAlgo DEBUG p = 62050.7 | |
TeslaReportAlgo DEBUG p (par_mom) = 62050.7 | |
TeslaReportAlgo DEBUG pT (par_mom) = 2981.5 | |
TeslaReportAlgo DEBUG Particle measured mass = 3116.81 | |
TeslaReportAlgo DEBUG Particle CL = -1 | |
TeslaReportAlgo DEBUG Daughter level 1 CLASS ID = 801 | |
TeslaReportAlgo DEBUG 1st Gen. Daughter ID: -13 | |
TeslaReportAlgo DEBUG Basic daughter level 1 has substructure consisting of: | |
TeslaReportAlgo DEBUG 10010 | |
TeslaReportAlgo DEBUG 803 | |
TeslaReportAlgo DEBUG 11050 | |
TeslaReportAlgo DEBUG 10010 | |
TeslaReportAlgo DEBUG Available information | |
TeslaReportAlgo DEBUG 0#Particle.particleID.pid = -13 | |
TeslaReportAlgo DEBUG 1#Particle.measuredMass = 105.658 | |
TeslaReportAlgo DEBUG 10#Particle.momCov00 = 45.5265 | |
TeslaReportAlgo DEBUG 11#Particle.momCov11 = 46.0165 | |
TeslaReportAlgo DEBUG 12#Particle.momCov22 = 12331.8 | |
TeslaReportAlgo DEBUG 13#Particle.momCov33 = 12334.5 | |
TeslaReportAlgo DEBUG 14#Particle.momCov10 = -0.457197 | |
TeslaReportAlgo DEBUG 15#Particle.momCov20 = -47.1264 | |
TeslaReportAlgo DEBUG 16#Particle.momCov21 = -183.791 | |
TeslaReportAlgo DEBUG 17#Particle.momCov30 = -47.3276 | |
TeslaReportAlgo DEBUG 18#Particle.momCov31 = -184.446 | |
TeslaReportAlgo DEBUG 19#Particle.momCov32 = 12333.1 | |
TeslaReportAlgo DEBUG 2#Particle.referencePoint.z = -59.9979 | |
TeslaReportAlgo DEBUG 20#Particle.posmomCov00 = -0.975031 | |
TeslaReportAlgo DEBUG 21#Particle.posmomCov11 = -0.920249 | |
TeslaReportAlgo DEBUG 22#Particle.posmomCov22 = 0 | |
TeslaReportAlgo DEBUG 23#Particle.posmomCov10 = 0.0383548 | |
TeslaReportAlgo DEBUG 24#Particle.posmomCov01 = 0.0331811 | |
TeslaReportAlgo DEBUG 25#Particle.posmomCov20 = -0.32039 | |
TeslaReportAlgo DEBUG 26#Particle.posmomCov02 = 0 | |
TeslaReportAlgo DEBUG 27#Particle.posmomCov21 = 0.042874 | |
TeslaReportAlgo DEBUG 28#Particle.posmomCov12 = 0 | |
TeslaReportAlgo DEBUG 29#Particle.posmomCov30 = -0.31633 | |
TeslaReportAlgo DEBUG 3#Particle.referencePoint.x = 0.204169 | |
TeslaReportAlgo DEBUG 30#Particle.posmomCov31 = 0.0563252 | |
TeslaReportAlgo DEBUG 31#Particle.posmomCov32 = 0 | |
TeslaReportAlgo DEBUG 32#Particle.posCov00 = 0.022142 | |
TeslaReportAlgo DEBUG 33#Particle.posCov11 = 0.0205696 | |
TeslaReportAlgo DEBUG 34#Particle.posCov22 = 0 | |
TeslaReportAlgo DEBUG 35#Particle.posCov10 = -0.000970003 | |
TeslaReportAlgo DEBUG 36#Particle.posCov20 = 0 | |
TeslaReportAlgo DEBUG 37#Particle.posCov21 = 0 | |
TeslaReportAlgo DEBUG 4#Particle.referencePoint.y = -0.0522348 | |
TeslaReportAlgo DEBUG 5#Particle.slopes.x = -0.00470378 | |
TeslaReportAlgo DEBUG 6#Particle.slopes.y = -0.0147944 | |
TeslaReportAlgo DEBUG 7#Particle.1/p = 3.90506e-05 | |
TeslaReportAlgo DEBUG 8#Particle.conflevel = 0.250063 | |
TeslaReportAlgo DEBUG 9#Particle.massErr = 0 | |
TeslaReportAlgo DEBUG p = 25607.8 | |
TeslaReportAlgo DEBUG p (par_mom) = 25607.8 | |
TeslaReportAlgo DEBUG pT (par_mom) = 397.492 | |
TeslaReportAlgo DEBUG Particle measured mass = 105.658 | |
TeslaReportAlgo DEBUG Particle CL = 0.250063 | |
TeslaReportAlgo DEBUG Available information (track) | |
TeslaReportAlgo DEBUG 0#Track.firstState.z = -59.9979 | |
TeslaReportAlgo DEBUG 1#Track.firstState.x = 0.204169 | |
TeslaReportAlgo DEBUG 10#Track.flags = 98403 | |
TeslaReportAlgo DEBUG 11#Track.lastState.z = 11900 | |
TeslaReportAlgo DEBUG 12#Track.lastState.x = -383.226 | |
TeslaReportAlgo DEBUG 13#Track.lastState.y = -183.154 | |
TeslaReportAlgo DEBUG 14#Track.lastState.tx = -0.0545535 | |
TeslaReportAlgo DEBUG 15#Track.lastState.ty = -0.0154353 | |
TeslaReportAlgo DEBUG 16#Track.lastState.qOverP = 3.91571e-05 | |
TeslaReportAlgo DEBUG 2#Track.firstState.y = -0.0522348 | |
TeslaReportAlgo DEBUG 3#Track.firstState.tx = -0.00470378 | |
TeslaReportAlgo DEBUG 4#Track.firstState.ty = -0.0147944 | |
TeslaReportAlgo DEBUG 5#Track.firstState.qOverP = 3.90506e-05 | |
TeslaReportAlgo DEBUG 6#Track.chi2PerDoF = 1.74011 | |
TeslaReportAlgo DEBUG 7#Track.nDoF = 15 | |
TeslaReportAlgo DEBUG 8#Track.Likelihood = 999 | |
TeslaReportAlgo DEBUG 9#Track.GhostProb = 999 | |
TeslaReportAlgo DEBUG FastTTValidationTool/ValidateWithTT = 1 | |
TeslaReportAlgo DEBUG MatchVeloMuon = 1 | |
TeslaReportAlgo DEBUG PatForwardTool/LooseForward = 0 | |
TeslaReportAlgo DEBUG PatForwardTool/TightForward = 0 | |
TeslaReportAlgo DEBUG Track #chi^{2}/DoF = 1.74011 | |
TeslaReportAlgo DEBUG Track extra for Rep v2, adding last state | |
TeslaReportAlgo DEBUG Track details added | |
TeslaReportAlgo DEBUG Available information (proto) | |
TeslaReportAlgo DEBUG 0#Proto.extraInfo.IsPhoton = -1000 | |
TeslaReportAlgo DEBUG Proto isPhoton = -1000 | |
TeslaReportAlgo DEBUG ProtoParticle details added | |
TeslaReportAlgo DEBUG Available information (muon) | |
TeslaReportAlgo DEBUG 0#Muon.MuonLLMu = -0.612305 | |
TeslaReportAlgo DEBUG 1#Muon.MuonLLBg = -3.34569 | |
TeslaReportAlgo DEBUG 2#Muon.NShared = 0 | |
TeslaReportAlgo DEBUG 3#Muon.Status = 31 | |
TeslaReportAlgo DEBUG 4#Muon.IsMuon = 1 | |
TeslaReportAlgo DEBUG 5#Muon.IsMuonLoose = 1 | |
TeslaReportAlgo DEBUG 6#Muon.IsMuonTight = 1 | |
TeslaReportAlgo DEBUG Muon LLMu = -0.612305 | |
TeslaReportAlgo DEBUG MuonPID details added | |
TeslaReportAlgo DEBUG Available information (track) | |
TeslaReportAlgo DEBUG 0#Track.firstState.z = 9450 | |
TeslaReportAlgo DEBUG 1#Track.firstState.x = -250.239 | |
TeslaReportAlgo DEBUG 10#Track.flags = 167 | |
TeslaReportAlgo DEBUG 11#Track.lastState.z = 9450 | |
TeslaReportAlgo DEBUG 12#Track.lastState.x = -250.239 | |
TeslaReportAlgo DEBUG 13#Track.lastState.y = -145.341 | |
TeslaReportAlgo DEBUG 14#Track.lastState.tx = -0.0537095 | |
TeslaReportAlgo DEBUG 15#Track.lastState.ty = -0.0154306 | |
TeslaReportAlgo DEBUG 16#Track.lastState.qOverP = 3.91386e-05 | |
TeslaReportAlgo DEBUG 2#Track.firstState.y = -145.341 | |
TeslaReportAlgo DEBUG 3#Track.firstState.tx = -0.0537095 | |
TeslaReportAlgo DEBUG 4#Track.firstState.ty = -0.0154306 | |
TeslaReportAlgo DEBUG 5#Track.firstState.qOverP = 3.91386e-05 | |
TeslaReportAlgo DEBUG 6#Track.chi2PerDoF = 0 | |
TeslaReportAlgo DEBUG 7#Track.nDoF = 0 | |
TeslaReportAlgo DEBUG 8#Track.Likelihood = 999 | |
TeslaReportAlgo DEBUG 9#Track.GhostProb = 999 | |
TeslaReportAlgo DEBUG Track #chi^{2}/DoF = 0 | |
TeslaReportAlgo DEBUG Track extra for Rep v2, adding last state | |
TeslaReportAlgo DEBUG Track details added | |
TeslaReportAlgo DEBUG Starting to tie pieces together | |
TeslaReportAlgo DEBUG Pieces tied together | |
TeslaReportAlgo DEBUG Daughter level 1 CLASS ID = 801 | |
TeslaReportAlgo DEBUG 1st Gen. Daughter ID: 13 | |
TeslaReportAlgo DEBUG Basic daughter level 1 has substructure consisting of: | |
TeslaReportAlgo DEBUG 10010 | |
TeslaReportAlgo DEBUG 803 | |
TeslaReportAlgo DEBUG 11050 | |
TeslaReportAlgo DEBUG 10010 | |
TeslaReportAlgo DEBUG Available information | |
TeslaReportAlgo DEBUG 0#Particle.particleID.pid = 13 | |
TeslaReportAlgo DEBUG 1#Particle.measuredMass = 105.658 | |
TeslaReportAlgo DEBUG 10#Particle.momCov00 = 157.312 | |
TeslaReportAlgo DEBUG 11#Particle.momCov11 = 63.1915 | |
TeslaReportAlgo DEBUG 12#Particle.momCov22 = 25780.6 | |
TeslaReportAlgo DEBUG 13#Particle.momCov33 = 25985.2 | |
TeslaReportAlgo DEBUG 14#Particle.momCov10 = 90.4017 | |
TeslaReportAlgo DEBUG 15#Particle.momCov20 = 1963.69 | |
TeslaReportAlgo DEBUG 16#Particle.momCov21 = 1193.57 | |
TeslaReportAlgo DEBUG 17#Particle.momCov30 = 1972.04 | |
TeslaReportAlgo DEBUG 18#Particle.momCov31 = 1198.62 | |
TeslaReportAlgo DEBUG 19#Particle.momCov32 = 25882.7 | |
TeslaReportAlgo DEBUG 2#Particle.referencePoint.z = -61.6075 | |
TeslaReportAlgo DEBUG 20#Particle.posmomCov00 = -0.0178917 | |
TeslaReportAlgo DEBUG 21#Particle.posmomCov11 = -0.0288718 | |
TeslaReportAlgo DEBUG 22#Particle.posmomCov22 = 0 | |
TeslaReportAlgo DEBUG 23#Particle.posmomCov10 = 0.00867769 | |
TeslaReportAlgo DEBUG 24#Particle.posmomCov01 = 0.00170523 | |
TeslaReportAlgo DEBUG 25#Particle.posmomCov20 = 0.107751 | |
TeslaReportAlgo DEBUG 26#Particle.posmomCov02 = 0 | |
TeslaReportAlgo DEBUG 27#Particle.posmomCov21 = -0.0289837 | |
TeslaReportAlgo DEBUG 28#Particle.posmomCov12 = 0 | |
TeslaReportAlgo DEBUG 29#Particle.posmomCov30 = 0.106345 | |
TeslaReportAlgo DEBUG 3#Particle.referencePoint.x = 0.00303489 | |
TeslaReportAlgo DEBUG 30#Particle.posmomCov31 = -0.0300642 | |
TeslaReportAlgo DEBUG 31#Particle.posmomCov32 = 0 | |
TeslaReportAlgo DEBUG 32#Particle.posCov00 = 0.00011001 | |
TeslaReportAlgo DEBUG 33#Particle.posCov11 = 0.000122489 | |
TeslaReportAlgo DEBUG 34#Particle.posCov22 = 0 | |
TeslaReportAlgo DEBUG 35#Particle.posCov10 = -2.83895e-05 | |
TeslaReportAlgo DEBUG 36#Particle.posCov20 = 0 | |
TeslaReportAlgo DEBUG 37#Particle.posCov21 = 0 | |
TeslaReportAlgo DEBUG 4#Particle.referencePoint.y = 0.00133898 | |
TeslaReportAlgo DEBUG 5#Particle.slopes.x = 0.0770296 | |
TeslaReportAlgo DEBUG 6#Particle.slopes.y = 0.046169 | |
TeslaReportAlgo DEBUG 7#Particle.1/p = 2.73833e-05 | |
TeslaReportAlgo DEBUG 8#Particle.conflevel = 0.250063 | |
TeslaReportAlgo DEBUG 9#Particle.massErr = 0 | |
TeslaReportAlgo DEBUG p = 36518.6 | |
TeslaReportAlgo DEBUG p (par_mom) = 36518.6 | |
TeslaReportAlgo DEBUG pT (par_mom) = 3266.45 | |
TeslaReportAlgo DEBUG Particle measured mass = 105.658 | |
TeslaReportAlgo DEBUG Particle CL = 0.250063 | |
TeslaReportAlgo DEBUG Available information (track) | |
TeslaReportAlgo DEBUG 0#Track.firstState.z = -61.6075 | |
TeslaReportAlgo DEBUG 1#Track.firstState.x = 0.00303489 | |
TeslaReportAlgo DEBUG 10#Track.flags = 2.19556e+06 | |
TeslaReportAlgo DEBUG 11#Track.lastState.z = 11900 | |
TeslaReportAlgo DEBUG 12#Track.lastState.x = 1152.22 | |
TeslaReportAlgo DEBUG 13#Track.lastState.y = 552.655 | |
TeslaReportAlgo DEBUG 14#Track.lastState.tx = 0.112201 | |
TeslaReportAlgo DEBUG 15#Track.lastState.ty = 0.0462488 | |
TeslaReportAlgo DEBUG 16#Track.lastState.qOverP = -2.74236e-05 | |
TeslaReportAlgo DEBUG 2#Track.firstState.y = 0.00133898 | |
TeslaReportAlgo DEBUG 3#Track.firstState.tx = 0.0770296 | |
TeslaReportAlgo DEBUG 4#Track.firstState.ty = 0.046169 | |
TeslaReportAlgo DEBUG 5#Track.firstState.qOverP = -2.73833e-05 | |
TeslaReportAlgo DEBUG 6#Track.chi2PerDoF = 1.33185 | |
TeslaReportAlgo DEBUG 7#Track.nDoF = 37 | |
TeslaReportAlgo DEBUG 8#Track.Likelihood = 999 | |
TeslaReportAlgo DEBUG 9#Track.GhostProb = 999 | |
TeslaReportAlgo DEBUG MatchVeloMuon = 1 | |
TeslaReportAlgo DEBUG PatForwardTool/LooseForward = 1 | |
TeslaReportAlgo DEBUG Track #chi^{2}/DoF = 1.33185 | |
TeslaReportAlgo DEBUG Track extra for Rep v2, adding last state | |
TeslaReportAlgo DEBUG Track details added | |
TeslaReportAlgo DEBUG Available information (proto) | |
TeslaReportAlgo DEBUG 0#Proto.extraInfo.IsPhoton = -1000 | |
TeslaReportAlgo DEBUG Proto isPhoton = -1000 | |
TeslaReportAlgo DEBUG ProtoParticle details added | |
TeslaReportAlgo DEBUG Available information (muon) | |
TeslaReportAlgo DEBUG 0#Muon.MuonLLMu = -1.79096 | |
TeslaReportAlgo DEBUG 1#Muon.MuonLLBg = -5.8011 | |
TeslaReportAlgo DEBUG 2#Muon.NShared = 0 | |
TeslaReportAlgo DEBUG 3#Muon.Status = 31 | |
TeslaReportAlgo DEBUG 4#Muon.IsMuon = 1 | |
TeslaReportAlgo DEBUG 5#Muon.IsMuonLoose = 1 | |
TeslaReportAlgo DEBUG 6#Muon.IsMuonTight = 1 | |
TeslaReportAlgo DEBUG Muon LLMu = -1.79096 | |
TeslaReportAlgo DEBUG MuonPID details added | |
TeslaReportAlgo DEBUG Available information (track) | |
TeslaReportAlgo DEBUG 0#Track.firstState.z = 9450 | |
TeslaReportAlgo DEBUG 1#Track.firstState.x = 877.748 | |
TeslaReportAlgo DEBUG 10#Track.flags = 167 | |
TeslaReportAlgo DEBUG 11#Track.lastState.z = 9450 | |
TeslaReportAlgo DEBUG 12#Track.lastState.x = 877.748 | |
TeslaReportAlgo DEBUG 13#Track.lastState.y = 439.361 | |
TeslaReportAlgo DEBUG 14#Track.lastState.tx = 0.111661 | |
TeslaReportAlgo DEBUG 15#Track.lastState.ty = 0.0462334 | |
TeslaReportAlgo DEBUG 16#Track.lastState.qOverP = -2.74143e-05 | |
TeslaReportAlgo DEBUG 2#Track.firstState.y = 439.361 | |
TeslaReportAlgo DEBUG 3#Track.firstState.tx = 0.111661 | |
TeslaReportAlgo DEBUG 4#Track.firstState.ty = 0.0462334 | |
TeslaReportAlgo DEBUG 5#Track.firstState.qOverP = -2.74143e-05 | |
TeslaReportAlgo DEBUG 6#Track.chi2PerDoF = 0 | |
TeslaReportAlgo DEBUG 7#Track.nDoF = 0 | |
TeslaReportAlgo DEBUG 8#Track.Likelihood = 999 | |
TeslaReportAlgo DEBUG 9#Track.GhostProb = 999 | |
TeslaReportAlgo DEBUG Track #chi^{2}/DoF = 0 | |
TeslaReportAlgo DEBUG Track extra for Rep v2, adding last state | |
TeslaReportAlgo DEBUG Track details added | |
TeslaReportAlgo DEBUG Starting to tie pieces together | |
TeslaReportAlgo DEBUG Pieces tied together | |
TeslaReportAlgo DEBUG Daughter level 1 CLASS ID = 802 | |
TeslaReportAlgo DEBUG Available information (vertex) | |
TeslaReportAlgo DEBUG 0#Vertex.chi2 = 0.994264 | |
TeslaReportAlgo DEBUG 1#Vertex.ndf = 1 | |
TeslaReportAlgo DEBUG 10#Vertex.cov20 = 0.152742 | |
TeslaReportAlgo DEBUG 11#Vertex.cov21 = 0.0913979 | |
TeslaReportAlgo DEBUG 2#Vertex.position.x = 0.11134 | |
TeslaReportAlgo DEBUG 3#Vertex.position.y = 0.0651462 | |
TeslaReportAlgo DEBUG 4#Vertex.position.z = -60.2091 | |
TeslaReportAlgo DEBUG 5#Vertex.technique = 0 | |
TeslaReportAlgo DEBUG 6#Vertex.cov00 = 0.0118236 | |
TeslaReportAlgo DEBUG 7#Vertex.cov11 = 0.00431478 | |
TeslaReportAlgo DEBUG 8#Vertex.cov22 = 1.99126 | |
TeslaReportAlgo DEBUG 9#Vertex.cov10 = 0.00698294 | |
TeslaReportAlgo DEBUG Decay vertex chi2 = 0.994264 | |
TeslaReportAlgo DEBUG Setting mother decay vertex | |
TeslaReportAlgo DEBUG End of algorithm execution | |
TeslaReportAlgo DEBUG ==> Execute | |
TeslaReportAlgo... DEBUG SelReports version check requested | |
TeslaReportAlgo...WARNING Sel. reports do not exist!!! | |
TeslaReportAlgo DEBUG VersionNum = 0 | |
TeslaReportAlgo WARNING Requested version number does not equal checker response | |
TeslaReportAlgo DEBUG versionNum = 0, m_ReportVersion = 2 | |
TeslaReportAlgo WARNING For your own safety, I will give you less information than requested, please check report generation | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Particle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Particles' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::ProtoParticle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Protos' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Vertex,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Vertices' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Track,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Tracks' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::RichPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/RichPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::MuonPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/MuonPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::VertexBase,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Rec/Vertex/Primary' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'LHCb::Relation1D<LHCb::Particle,LHCb::VertexBase>' is registered in TS at address 'Tesla/Particle2VertexRelations' | |
TeslaReportAlgo DEBUG The object of type 'LHCb::HltVertexReports*' has been retrieved from TS at address 'Hlt1/VertexReports' | |
TeslaReportAlgo DEBUG Available vertex reports: | |
TeslaReportAlgo DEBUG PV3D | |
TeslaReportAlgo DEBUG ProtoPV3D | |
TeslaReportAlgo DEBUG Vertex chi2= 43.9582, ndf =61 | |
TeslaReportAlgo DEBUG Vertex key= 0 | |
TeslaReportAlgo DEBUG Vertex chi2= 10.0983, ndf =15 | |
TeslaReportAlgo DEBUG Vertex key= 1 | |
TeslaReportAlgo WARNING Sel. reports do not exist!!! | |
TeslaReportAlgo DEBUG ==> Execute | |
TeslaReportAlgo... DEBUG SelReports version check requested | |
TeslaReportAlgo... DEBUG The object of type 'LHCb::HltSelReports*' has been retrieved from TS at address 'Hlt2/SelReports' | |
TeslaReportAlgo DEBUG VersionNum = 99 | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Particle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Particles' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::ProtoParticle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Protos' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Vertex,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Vertices' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Track,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Tracks' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::RichPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/RichPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::MuonPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/MuonPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::VertexBase,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Rec/Vertex/Primary' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'LHCb::Relation1D<LHCb::Particle,LHCb::VertexBase>' is registered in TS at address 'Tesla/Particle2VertexRelations' | |
TeslaReportAlgo DEBUG The object of type 'LHCb::HltVertexReports*' has been retrieved from TS at address 'Hlt1/VertexReports' | |
TeslaReportAlgo DEBUG Available vertex reports: | |
TeslaReportAlgo DEBUG PV3D | |
TeslaReportAlgo DEBUG ProtoPV3D | |
TeslaReportAlgo DEBUG Vertex chi2= 21.6417, ndf =27 | |
TeslaReportAlgo DEBUG Vertex key= 0 | |
TeslaReportAlgo DEBUG Vertex chi2= 22.7826, ndf =23 | |
TeslaReportAlgo DEBUG Vertex key= 1 | |
TeslaReportAlgo DEBUG The object of type 'LHCb::HltSelReports*' has been retrieved from TS at address 'Hlt2/SelReports' | |
TeslaReportAlgo DEBUG Available reports: | |
TeslaReportAlgo DEBUG Hlt2Global | |
TeslaReportAlgo DEBUG Hlt2SingleMuonLowPTDecision | |
TeslaReportAlgo DEBUG End of algorithm execution | |
TeslaReportAlgo DEBUG ==> Execute | |
TeslaReportAlgo... DEBUG SelReports version check requested | |
TeslaReportAlgo...WARNING Sel. reports do not exist!!! | |
TeslaReportAlgo DEBUG VersionNum = 0 | |
TeslaReportAlgo WARNING Requested version number does not equal checker response | |
TeslaReportAlgo DEBUG versionNum = 0, m_ReportVersion = 2 | |
TeslaReportAlgo WARNING For your own safety, I will give you less information than requested, please check report generation | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Particle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Particles' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::ProtoParticle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Protos' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Vertex,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Vertices' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Track,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Tracks' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::RichPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/RichPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::MuonPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/MuonPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::VertexBase,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Rec/Vertex/Primary' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'LHCb::Relation1D<LHCb::Particle,LHCb::VertexBase>' is registered in TS at address 'Tesla/Particle2VertexRelations' | |
Hlt1VertexRepor...WARNING HltVertexReportsDecoder:: No HltVertexReports RawBank for requested SourceID in RawEvent. Quiting. | |
TeslaReportAlgo DEBUG The object of type 'LHCb::HltVertexReports*' has been retrieved from TS at address 'Hlt1/VertexReports' | |
TeslaReportAlgo DEBUG Available vertex reports: | |
TeslaReportAlgo WARNING Sel. reports do not exist!!! | |
TeslaReportAlgo DEBUG ==> Execute | |
TeslaReportAlgo... DEBUG SelReports version check requested | |
TeslaReportAlgo...WARNING Sel. reports do not exist!!! | |
TeslaReportAlgo DEBUG VersionNum = 0 | |
TeslaReportAlgo WARNING Requested version number does not equal checker response | |
TeslaReportAlgo DEBUG versionNum = 0, m_ReportVersion = 2 | |
TeslaReportAlgo WARNING For your own safety, I will give you less information than requested, please check report generation | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Particle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Particles' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::ProtoParticle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Protos' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Vertex,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Vertices' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Track,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Tracks' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::RichPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/RichPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::MuonPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/MuonPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::VertexBase,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Rec/Vertex/Primary' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'LHCb::Relation1D<LHCb::Particle,LHCb::VertexBase>' is registered in TS at address 'Tesla/Particle2VertexRelations' | |
Hlt1VertexRepor...WARNING HltVertexReportsDecoder:: No HltVertexReports RawBank for requested SourceID in RawEvent. Quiting. | |
TeslaReportAlgo DEBUG The object of type 'LHCb::HltVertexReports*' has been retrieved from TS at address 'Hlt1/VertexReports' | |
TeslaReportAlgo DEBUG Available vertex reports: | |
TeslaReportAlgo WARNING Sel. reports do not exist!!! | |
TeslaReportAlgo DEBUG ==> Execute | |
TeslaReportAlgo... DEBUG SelReports version check requested | |
TeslaReportAlgo... DEBUG The object of type 'LHCb::HltSelReports*' has been retrieved from TS at address 'Hlt2/SelReports' | |
TeslaReportAlgo... DEBUG Examining mother report | |
TeslaReportAlgo... DEBUG Mother report is of a particle | |
TeslaReportAlgo... DEBUG ReportCheckTool finds verision 2 | |
TeslaReportAlgo DEBUG VersionNum = 2 | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Particle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Particles' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::ProtoParticle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Protos' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Vertex,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Vertices' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Track,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Tracks' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::RichPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/RichPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::MuonPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/MuonPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::VertexBase,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Rec/Vertex/Primary' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'LHCb::Relation1D<LHCb::Particle,LHCb::VertexBase>' is registered in TS at address 'Tesla/Particle2VertexRelations' | |
TeslaReportAlgo DEBUG The object of type 'LHCb::HltVertexReports*' has been retrieved from TS at address 'Hlt1/VertexReports' | |
TeslaReportAlgo DEBUG Available vertex reports: | |
TeslaReportAlgo DEBUG PV3D | |
TeslaReportAlgo DEBUG ProtoPV3D | |
TeslaReportAlgo DEBUG Vertex chi2= 114.477, ndf =121 | |
TeslaReportAlgo DEBUG Vertex key= 0 | |
TeslaReportAlgo DEBUG Vertex chi2= 70.2247, ndf =73 | |
TeslaReportAlgo DEBUG Vertex key= 1 | |
TeslaReportAlgo DEBUG The object of type 'LHCb::HltSelReports*' has been retrieved from TS at address 'Hlt2/SelReports' | |
TeslaReportAlgo DEBUG Available reports: | |
TeslaReportAlgo DEBUG Hlt2DiMuonDecision | |
TeslaReportAlgo DEBUG Hlt2DiMuonJPsiDecision | |
TeslaReportAlgo DEBUG Hlt2Global | |
TeslaReportAlgo DEBUG Hlt2SingleMuonDecision | |
TeslaReportAlgo DEBUG Hlt2SingleMuonLowPTDecision | |
TeslaReportAlgo DEBUG Required line has been fired | |
TeslaReportAlgo DEBUG Reference: | |
TeslaReportAlgo DEBUG Particle class ID = 801 | |
TeslaReportAlgo DEBUG Track class ID = 10010 | |
TeslaReportAlgo DEBUG RecVertex class ID = 10030 | |
TeslaReportAlgo DEBUG Vertex class ID = 802 | |
TeslaReportAlgo DEBUG ProtoParticle class ID = 803 | |
TeslaReportAlgo DEBUG { summarizedObjectCLID : 1 numericalInfo : { 0#SelectionID:50201 , } substructure : { 14:801 , } lhcbIDs : { } } | |
TeslaReportAlgo DEBUG MOTHER CLASS ID = 1 | |
TeslaReportAlgo DEBUG LHCbIDs.size() = 0 | |
TeslaReportAlgo DEBUG Number of triggered candidates = 1 | |
TeslaReportAlgo DEBUG [0xb568600] | |
TeslaReportAlgo DEBUG Starting loop over triggered candidates | |
TeslaReportAlgo DEBUG Mother object CLASS ID = 801 | |
TeslaReportAlgo DEBUG Found mother with ID: 443 | |
TeslaReportAlgo DEBUG Mother has substructure consisting of: | |
TeslaReportAlgo DEBUG 801 | |
TeslaReportAlgo DEBUG 801 | |
TeslaReportAlgo DEBUG 802 | |
TeslaReportAlgo DEBUG Available information | |
TeslaReportAlgo DEBUG 0#Particle.particleID.pid = 443 | |
TeslaReportAlgo DEBUG 1#Particle.measuredMass = 3112.27 | |
TeslaReportAlgo DEBUG 10#Particle.momCov00 = 162.136 | |
TeslaReportAlgo DEBUG 11#Particle.momCov11 = 92.5057 | |
TeslaReportAlgo DEBUG 12#Particle.momCov22 = 38928.6 | |
TeslaReportAlgo DEBUG 13#Particle.momCov33 = 39130.5 | |
TeslaReportAlgo DEBUG 14#Particle.momCov10 = -70.2555 | |
TeslaReportAlgo DEBUG 15#Particle.momCov20 = 2260.41 | |
TeslaReportAlgo DEBUG 16#Particle.momCov21 = -1407.76 | |
TeslaReportAlgo DEBUG 17#Particle.momCov30 = 2269.39 | |
TeslaReportAlgo DEBUG 18#Particle.momCov31 = -1410.31 | |
TeslaReportAlgo DEBUG 19#Particle.momCov32 = 39029.2 | |
TeslaReportAlgo DEBUG 2#Particle.referencePoint.z = -35.6031 | |
TeslaReportAlgo DEBUG 20#Particle.posmomCov00 = -0.038991 | |
TeslaReportAlgo DEBUG 21#Particle.posmomCov11 = -0.118378 | |
TeslaReportAlgo DEBUG 22#Particle.posmomCov22 = 3.57506 | |
TeslaReportAlgo DEBUG 23#Particle.posmomCov10 = -0.0849062 | |
TeslaReportAlgo DEBUG 24#Particle.posmomCov01 = 0.0108873 | |
TeslaReportAlgo DEBUG 25#Particle.posmomCov20 = 0.776994 | |
TeslaReportAlgo DEBUG 26#Particle.posmomCov02 = 0.257664 | |
TeslaReportAlgo DEBUG 27#Particle.posmomCov21 = 0.303338 | |
TeslaReportAlgo DEBUG 28#Particle.posmomCov12 = -0.678609 | |
TeslaReportAlgo DEBUG 29#Particle.posmomCov30 = 0.778915 | |
TeslaReportAlgo DEBUG 3#Particle.referencePoint.x = 0.012115 | |
TeslaReportAlgo DEBUG 30#Particle.posmomCov31 = 0.306519 | |
TeslaReportAlgo DEBUG 31#Particle.posmomCov32 = 3.67539 | |
TeslaReportAlgo DEBUG 32#Particle.posCov00 = 0.000923678 | |
TeslaReportAlgo DEBUG 33#Particle.posCov11 = 0.000510348 | |
TeslaReportAlgo DEBUG 34#Particle.posCov22 = 0.0726042 | |
TeslaReportAlgo DEBUG 35#Particle.posCov10 = 0.000322589 | |
TeslaReportAlgo DEBUG 36#Particle.posCov20 = 0.0060827 | |
TeslaReportAlgo DEBUG 37#Particle.posCov21 = 0.00324847 | |
TeslaReportAlgo DEBUG 4#Particle.referencePoint.y = -0.0216815 | |
TeslaReportAlgo DEBUG 5#Particle.slopes.x = 0.074454 | |
TeslaReportAlgo DEBUG 6#Particle.slopes.y = -0.0150416 | |
TeslaReportAlgo DEBUG 7#Particle.1/p = 1.96333e-05 | |
TeslaReportAlgo DEBUG 8#Particle.conflevel = -1 | |
TeslaReportAlgo DEBUG 9#Particle.massErr = 10.7277 | |
TeslaReportAlgo DEBUG p = 50933.8 | |
TeslaReportAlgo DEBUG p (par_mom) = 50933.8 | |
TeslaReportAlgo DEBUG pT (par_mom) = 3857.72 | |
TeslaReportAlgo DEBUG Particle measured mass = 3112.27 | |
TeslaReportAlgo DEBUG Particle CL = -1 | |
TeslaReportAlgo DEBUG Daughter level 1 CLASS ID = 801 | |
TeslaReportAlgo DEBUG 1st Gen. Daughter ID: -13 | |
TeslaReportAlgo DEBUG Basic daughter level 1 has substructure consisting of: | |
TeslaReportAlgo DEBUG 10010 | |
TeslaReportAlgo DEBUG 803 | |
TeslaReportAlgo DEBUG 11050 | |
TeslaReportAlgo DEBUG 10010 | |
TeslaReportAlgo DEBUG Available information | |
TeslaReportAlgo DEBUG 0#Particle.particleID.pid = -13 | |
TeslaReportAlgo DEBUG 1#Particle.measuredMass = 105.658 | |
TeslaReportAlgo DEBUG 10#Particle.momCov00 = 25.7173 | |
TeslaReportAlgo DEBUG 11#Particle.momCov11 = 12.4938 | |
TeslaReportAlgo DEBUG 12#Particle.momCov22 = 804.468 | |
TeslaReportAlgo DEBUG 13#Particle.momCov33 = 831.01 | |
TeslaReportAlgo DEBUG 14#Particle.momCov10 = 12.5532 | |
TeslaReportAlgo DEBUG 15#Particle.momCov20 = 123.518 | |
TeslaReportAlgo DEBUG 16#Particle.momCov21 = 77.5915 | |
TeslaReportAlgo DEBUG 17#Particle.momCov30 = 126.601 | |
TeslaReportAlgo DEBUG 18#Particle.momCov31 = 79.4228 | |
TeslaReportAlgo DEBUG 19#Particle.momCov32 = 817.525 | |
TeslaReportAlgo DEBUG 2#Particle.referencePoint.z = -35.299 | |
TeslaReportAlgo DEBUG 20#Particle.posmomCov00 = -0.0817302 | |
TeslaReportAlgo DEBUG 21#Particle.posmomCov11 = -0.0476974 | |
TeslaReportAlgo DEBUG 22#Particle.posmomCov22 = 0 | |
TeslaReportAlgo DEBUG 23#Particle.posmomCov10 = -0.013656 | |
TeslaReportAlgo DEBUG 24#Particle.posmomCov01 = -0.0134129 | |
TeslaReportAlgo DEBUG 25#Particle.posmomCov20 = -0.0122273 | |
TeslaReportAlgo DEBUG 26#Particle.posmomCov02 = 0 | |
TeslaReportAlgo DEBUG 27#Particle.posmomCov21 = -0.00454003 | |
TeslaReportAlgo DEBUG 28#Particle.posmomCov12 = 0 | |
TeslaReportAlgo DEBUG 29#Particle.posmomCov30 = -0.0256505 | |
TeslaReportAlgo DEBUG 3#Particle.referencePoint.x = 0.082479 | |
TeslaReportAlgo DEBUG 30#Particle.posmomCov31 = -0.0110173 | |
TeslaReportAlgo DEBUG 31#Particle.posmomCov32 = 0 | |
TeslaReportAlgo DEBUG 32#Particle.posCov00 = 0.0011737 | |
TeslaReportAlgo DEBUG 33#Particle.posCov11 = 0.000565742 | |
TeslaReportAlgo DEBUG 34#Particle.posCov22 = 0 | |
TeslaReportAlgo DEBUG 35#Particle.posCov10 = 0.000246788 | |
TeslaReportAlgo DEBUG 36#Particle.posCov20 = 0 | |
TeslaReportAlgo DEBUG 37#Particle.posCov21 = 0 | |
TeslaReportAlgo DEBUG 4#Particle.referencePoint.y = 0.0040109 | |
TeslaReportAlgo DEBUG 5#Particle.slopes.x = 0.153246 | |
TeslaReportAlgo DEBUG 6#Particle.slopes.y = 0.0964803 | |
TeslaReportAlgo DEBUG 7#Particle.1/p = 0.000115689 | |
TeslaReportAlgo DEBUG 8#Particle.conflevel = 0.250063 | |
TeslaReportAlgo DEBUG 9#Particle.massErr = 0 | |
TeslaReportAlgo DEBUG p = 8643.88 | |
TeslaReportAlgo DEBUG p (par_mom) = 8643.88 | |
TeslaReportAlgo DEBUG pT (par_mom) = 1540.25 | |
TeslaReportAlgo DEBUG Particle measured mass = 105.658 | |
TeslaReportAlgo DEBUG Particle CL = 0.250063 | |
TeslaReportAlgo DEBUG Available information (track) | |
TeslaReportAlgo DEBUG 0#Track.firstState.z = -35.299 | |
TeslaReportAlgo DEBUG 1#Track.firstState.x = 0.082479 | |
TeslaReportAlgo DEBUG 10#Track.flags = 2.19556e+06 | |
TeslaReportAlgo DEBUG 11#Track.lastState.z = 11900 | |
TeslaReportAlgo DEBUG 12#Track.lastState.x = 849.533 | |
TeslaReportAlgo DEBUG 13#Track.lastState.y = 1122.75 | |
TeslaReportAlgo DEBUG 14#Track.lastState.tx = 0.00414624 | |
TeslaReportAlgo DEBUG 15#Track.lastState.ty = 0.0922608 | |
TeslaReportAlgo DEBUG 16#Track.lastState.qOverP = 0.00011636 | |
TeslaReportAlgo DEBUG 2#Track.firstState.y = 0.0040109 | |
TeslaReportAlgo DEBUG 3#Track.firstState.tx = 0.153246 | |
TeslaReportAlgo DEBUG 4#Track.firstState.ty = 0.0964803 | |
TeslaReportAlgo DEBUG 5#Track.firstState.qOverP = 0.000115689 | |
TeslaReportAlgo DEBUG 6#Track.chi2PerDoF = 1.27481 | |
TeslaReportAlgo DEBUG 7#Track.nDoF = 31 | |
TeslaReportAlgo DEBUG 8#Track.Likelihood = 999 | |
TeslaReportAlgo DEBUG 9#Track.GhostProb = 999 | |
TeslaReportAlgo DEBUG MatchVeloMuon = 1 | |
TeslaReportAlgo DEBUG PatForwardTool/LooseForward = 1 | |
TeslaReportAlgo DEBUG Track #chi^{2}/DoF = 1.27481 | |
TeslaReportAlgo DEBUG Track extra for Rep v2, adding last state | |
TeslaReportAlgo DEBUG Track details added | |
TeslaReportAlgo DEBUG Available information (proto) | |
TeslaReportAlgo DEBUG 0#Proto.extraInfo.IsPhoton = -1000 | |
TeslaReportAlgo DEBUG Proto isPhoton = -1000 | |
TeslaReportAlgo DEBUG ProtoParticle details added | |
TeslaReportAlgo DEBUG Available information (muon) | |
TeslaReportAlgo DEBUG 0#Muon.MuonLLMu = -0.302051 | |
TeslaReportAlgo DEBUG 1#Muon.MuonLLBg = -2.5578 | |
TeslaReportAlgo DEBUG 2#Muon.NShared = 0 | |
TeslaReportAlgo DEBUG 3#Muon.Status = 31 | |
TeslaReportAlgo DEBUG 4#Muon.IsMuon = 1 | |
TeslaReportAlgo DEBUG 5#Muon.IsMuonLoose = 1 | |
TeslaReportAlgo DEBUG 6#Muon.IsMuonTight = 1 | |
TeslaReportAlgo DEBUG Muon LLMu = -0.302051 | |
TeslaReportAlgo DEBUG MuonPID details added | |
TeslaReportAlgo DEBUG Available information (track) | |
TeslaReportAlgo DEBUG 0#Track.firstState.z = 9450 | |
TeslaReportAlgo DEBUG 1#Track.firstState.x = 837.879 | |
TeslaReportAlgo DEBUG 10#Track.flags = 167 | |
TeslaReportAlgo DEBUG 11#Track.lastState.z = 9450 | |
TeslaReportAlgo DEBUG 12#Track.lastState.x = 837.879 | |
TeslaReportAlgo DEBUG 13#Track.lastState.y = 896.495 | |
TeslaReportAlgo DEBUG 14#Track.lastState.tx = 0.00605511 | |
TeslaReportAlgo DEBUG 15#Track.lastState.ty = 0.0925003 | |
TeslaReportAlgo DEBUG 16#Track.lastState.qOverP = 0.000116211 | |
TeslaReportAlgo DEBUG 2#Track.firstState.y = 896.495 | |
TeslaReportAlgo DEBUG 3#Track.firstState.tx = 0.00605511 | |
TeslaReportAlgo DEBUG 4#Track.firstState.ty = 0.0925003 | |
TeslaReportAlgo DEBUG 5#Track.firstState.qOverP = 0.000116211 | |
TeslaReportAlgo DEBUG 6#Track.chi2PerDoF = 0 | |
TeslaReportAlgo DEBUG 7#Track.nDoF = 0 | |
TeslaReportAlgo DEBUG 8#Track.Likelihood = 999 | |
TeslaReportAlgo DEBUG 9#Track.GhostProb = 999 | |
TeslaReportAlgo DEBUG Track #chi^{2}/DoF = 0 | |
TeslaReportAlgo DEBUG Track extra for Rep v2, adding last state | |
TeslaReportAlgo DEBUG Track details added | |
TeslaReportAlgo DEBUG Starting to tie pieces together | |
TeslaReportAlgo DEBUG Pieces tied together | |
TeslaReportAlgo DEBUG Daughter level 1 CLASS ID = 801 | |
TeslaReportAlgo DEBUG 1st Gen. Daughter ID: 13 | |
TeslaReportAlgo DEBUG Basic daughter level 1 has substructure consisting of: | |
TeslaReportAlgo DEBUG 10010 | |
TeslaReportAlgo DEBUG 803 | |
TeslaReportAlgo DEBUG 11050 | |
TeslaReportAlgo DEBUG 10010 | |
TeslaReportAlgo DEBUG Available information | |
TeslaReportAlgo DEBUG 0#Particle.particleID.pid = 13 | |
TeslaReportAlgo DEBUG 1#Particle.measuredMass = 105.658 | |
TeslaReportAlgo DEBUG 10#Particle.momCov00 = 136.448 | |
TeslaReportAlgo DEBUG 11#Particle.momCov11 = 82.5993 | |
TeslaReportAlgo DEBUG 12#Particle.momCov22 = 38264.5 | |
TeslaReportAlgo DEBUG 13#Particle.momCov33 = 38439.8 | |
TeslaReportAlgo DEBUG 14#Particle.momCov10 = -82.5326 | |
TeslaReportAlgo DEBUG 15#Particle.momCov20 = 2138.92 | |
TeslaReportAlgo DEBUG 16#Particle.momCov21 = -1466.3 | |
TeslaReportAlgo DEBUG 17#Particle.momCov30 = 2144.82 | |
TeslaReportAlgo DEBUG 18#Particle.momCov31 = -1470.67 | |
TeslaReportAlgo DEBUG 19#Particle.momCov32 = 38352 | |
TeslaReportAlgo DEBUG 2#Particle.referencePoint.z = -35.084 | |
TeslaReportAlgo DEBUG 20#Particle.posmomCov00 = -0.0515395 | |
TeslaReportAlgo DEBUG 21#Particle.posmomCov11 = -0.172293 | |
TeslaReportAlgo DEBUG 22#Particle.posmomCov22 = 0 | |
TeslaReportAlgo DEBUG 23#Particle.posmomCov10 = -0.0224089 | |
TeslaReportAlgo DEBUG 24#Particle.posmomCov01 = 0.0174594 | |
TeslaReportAlgo DEBUG 25#Particle.posmomCov20 = 0.733186 | |
TeslaReportAlgo DEBUG 26#Particle.posmomCov02 = 0 | |
TeslaReportAlgo DEBUG 27#Particle.posmomCov21 = 0.225126 | |
TeslaReportAlgo DEBUG 28#Particle.posmomCov12 = 0 | |
TeslaReportAlgo DEBUG 29#Particle.posmomCov30 = 0.729239 | |
TeslaReportAlgo DEBUG 3#Particle.referencePoint.x = 0.0261033 | |
TeslaReportAlgo DEBUG 30#Particle.posmomCov31 = 0.232054 | |
TeslaReportAlgo DEBUG 31#Particle.posmomCov32 = 0 | |
TeslaReportAlgo DEBUG 32#Particle.posCov00 = 0.000656451 | |
TeslaReportAlgo DEBUG 33#Particle.posCov11 = 0.00117264 | |
TeslaReportAlgo DEBUG 34#Particle.posCov22 = 0 | |
TeslaReportAlgo DEBUG 35#Particle.posCov10 = -5.14158e-05 | |
TeslaReportAlgo DEBUG 36#Particle.posCov20 = 0 | |
TeslaReportAlgo DEBUG 37#Particle.posCov21 = 0 | |
TeslaReportAlgo DEBUG 4#Particle.referencePoint.y = -0.0202937 | |
TeslaReportAlgo DEBUG 5#Particle.slopes.x = 0.0586185 | |
TeslaReportAlgo DEBUG 6#Particle.slopes.y = -0.0375323 | |
TeslaReportAlgo DEBUG 7#Particle.1/p = 2.36014e-05 | |
TeslaReportAlgo DEBUG 8#Particle.conflevel = 0.250063 | |
TeslaReportAlgo DEBUG 9#Particle.massErr = 0 | |
TeslaReportAlgo DEBUG p = 42370.3 | |
TeslaReportAlgo DEBUG p (par_mom) = 42370.3 | |
TeslaReportAlgo DEBUG pT (par_mom) = 2942.05 | |
TeslaReportAlgo DEBUG Particle measured mass = 105.658 | |
TeslaReportAlgo DEBUG Particle CL = 0.250063 | |
TeslaReportAlgo DEBUG Available information (track) | |
TeslaReportAlgo DEBUG 0#Track.firstState.z = -35.084 | |
TeslaReportAlgo DEBUG 1#Track.firstState.x = 0.0261033 | |
TeslaReportAlgo DEBUG 10#Track.flags = 2.19556e+06 | |
TeslaReportAlgo DEBUG 11#Track.lastState.z = 11900 | |
TeslaReportAlgo DEBUG 12#Track.lastState.x = 895.459 | |
TeslaReportAlgo DEBUG 13#Track.lastState.y = -448.752 | |
TeslaReportAlgo DEBUG 14#Track.lastState.tx = 0.0886688 | |
TeslaReportAlgo DEBUG 15#Track.lastState.ty = -0.0375752 | |
TeslaReportAlgo DEBUG 16#Track.lastState.qOverP = -2.36291e-05 | |
TeslaReportAlgo DEBUG 2#Track.firstState.y = -0.0202937 | |
TeslaReportAlgo DEBUG 3#Track.firstState.tx = 0.0586185 | |
TeslaReportAlgo DEBUG 4#Track.firstState.ty = -0.0375323 | |
TeslaReportAlgo DEBUG 5#Track.firstState.qOverP = -2.36014e-05 | |
TeslaReportAlgo DEBUG 6#Track.chi2PerDoF = 1.12973 | |
TeslaReportAlgo DEBUG 7#Track.nDoF = 23 | |
TeslaReportAlgo DEBUG 8#Track.Likelihood = 999 | |
TeslaReportAlgo DEBUG 9#Track.GhostProb = 999 | |
TeslaReportAlgo DEBUG MatchVeloMuon = 1 | |
TeslaReportAlgo DEBUG PatForwardTool/LooseForward = 1 | |
TeslaReportAlgo DEBUG Track #chi^{2}/DoF = 1.12973 | |
TeslaReportAlgo DEBUG Track extra for Rep v2, adding last state | |
TeslaReportAlgo DEBUG Track details added | |
TeslaReportAlgo DEBUG Available information (proto) | |
TeslaReportAlgo DEBUG 0#Proto.extraInfo.IsPhoton = -1000 | |
TeslaReportAlgo DEBUG Proto isPhoton = -1000 | |
TeslaReportAlgo DEBUG ProtoParticle details added | |
TeslaReportAlgo DEBUG Available information (muon) | |
TeslaReportAlgo DEBUG 0#Muon.MuonLLMu = -1.51914 | |
TeslaReportAlgo DEBUG 1#Muon.MuonLLBg = -5.86784 | |
TeslaReportAlgo DEBUG 2#Muon.NShared = 0 | |
TeslaReportAlgo DEBUG 3#Muon.Status = 31 | |
TeslaReportAlgo DEBUG 4#Muon.IsMuon = 1 | |
TeslaReportAlgo DEBUG 5#Muon.IsMuonLoose = 1 | |
TeslaReportAlgo DEBUG 6#Muon.IsMuonTight = 1 | |
TeslaReportAlgo DEBUG Muon LLMu = -1.51914 | |
TeslaReportAlgo DEBUG MuonPID details added | |
TeslaReportAlgo DEBUG Available information (track) | |
TeslaReportAlgo DEBUG 0#Track.firstState.z = 9450 | |
TeslaReportAlgo DEBUG 1#Track.firstState.x = 678.6 | |
TeslaReportAlgo DEBUG 10#Track.flags = 167 | |
TeslaReportAlgo DEBUG 11#Track.lastState.z = 9450 | |
TeslaReportAlgo DEBUG 12#Track.lastState.x = 678.6 | |
TeslaReportAlgo DEBUG 13#Track.lastState.y = -356.698 | |
TeslaReportAlgo DEBUG 14#Track.lastState.tx = 0.0881862 | |
TeslaReportAlgo DEBUG 15#Track.lastState.ty = -0.0375723 | |
TeslaReportAlgo DEBUG 16#Track.lastState.qOverP = -2.36224e-05 | |
TeslaReportAlgo DEBUG 2#Track.firstState.y = -356.698 | |
TeslaReportAlgo DEBUG 3#Track.firstState.tx = 0.0881862 | |
TeslaReportAlgo DEBUG 4#Track.firstState.ty = -0.0375723 | |
TeslaReportAlgo DEBUG 5#Track.firstState.qOverP = -2.36224e-05 | |
TeslaReportAlgo DEBUG 6#Track.chi2PerDoF = 0 | |
TeslaReportAlgo DEBUG 7#Track.nDoF = 0 | |
TeslaReportAlgo DEBUG 8#Track.Likelihood = 999 | |
TeslaReportAlgo DEBUG 9#Track.GhostProb = 999 | |
TeslaReportAlgo DEBUG Track #chi^{2}/DoF = 0 | |
TeslaReportAlgo DEBUG Track extra for Rep v2, adding last state | |
TeslaReportAlgo DEBUG Track details added | |
TeslaReportAlgo DEBUG Starting to tie pieces together | |
TeslaReportAlgo DEBUG Pieces tied together | |
TeslaReportAlgo DEBUG Daughter level 1 CLASS ID = 802 | |
TeslaReportAlgo DEBUG Available information (vertex) | |
TeslaReportAlgo DEBUG 0#Vertex.chi2 = 1.36067 | |
TeslaReportAlgo DEBUG 1#Vertex.ndf = 1 | |
TeslaReportAlgo DEBUG 10#Vertex.cov20 = 0.0060827 | |
TeslaReportAlgo DEBUG 11#Vertex.cov21 = 0.00324847 | |
TeslaReportAlgo DEBUG 2#Vertex.position.x = 0.012115 | |
TeslaReportAlgo DEBUG 3#Vertex.position.y = -0.0216815 | |
TeslaReportAlgo DEBUG 4#Vertex.position.z = -35.6031 | |
TeslaReportAlgo DEBUG 5#Vertex.technique = 0 | |
TeslaReportAlgo DEBUG 6#Vertex.cov00 = 0.000923678 | |
TeslaReportAlgo DEBUG 7#Vertex.cov11 = 0.000510348 | |
TeslaReportAlgo DEBUG 8#Vertex.cov22 = 0.0726042 | |
TeslaReportAlgo DEBUG 9#Vertex.cov10 = 0.000322589 | |
TeslaReportAlgo DEBUG Decay vertex chi2 = 1.36067 | |
TeslaReportAlgo DEBUG Setting mother decay vertex | |
TeslaReportAlgo DEBUG End of algorithm execution | |
TeslaReportAlgo DEBUG ==> Execute | |
TeslaReportAlgo... DEBUG SelReports version check requested | |
TeslaReportAlgo... DEBUG The object of type 'LHCb::HltSelReports*' has been retrieved from TS at address 'Hlt2/SelReports' | |
TeslaReportAlgo DEBUG VersionNum = 99 | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Particle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Particles' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::ProtoParticle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Protos' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Vertex,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Vertices' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Track,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Tracks' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::RichPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/RichPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::MuonPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/MuonPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::VertexBase,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Rec/Vertex/Primary' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'LHCb::Relation1D<LHCb::Particle,LHCb::VertexBase>' is registered in TS at address 'Tesla/Particle2VertexRelations' | |
TeslaReportAlgo DEBUG The object of type 'LHCb::HltVertexReports*' has been retrieved from TS at address 'Hlt1/VertexReports' | |
TeslaReportAlgo DEBUG Available vertex reports: | |
TeslaReportAlgo DEBUG PV3D | |
TeslaReportAlgo DEBUG ProtoPV3D | |
TeslaReportAlgo DEBUG Vertex chi2= 30.7022, ndf =23 | |
TeslaReportAlgo DEBUG Vertex key= 0 | |
TeslaReportAlgo DEBUG Vertex chi2= 6.08387, ndf =17 | |
TeslaReportAlgo DEBUG Vertex key= 1 | |
TeslaReportAlgo DEBUG The object of type 'LHCb::HltSelReports*' has been retrieved from TS at address 'Hlt2/SelReports' | |
TeslaReportAlgo DEBUG Available reports: | |
TeslaReportAlgo DEBUG Hlt2Global | |
TeslaReportAlgo DEBUG Hlt2SingleMuonDecision | |
TeslaReportAlgo DEBUG Hlt2SingleMuonLowPTDecision | |
TeslaReportAlgo DEBUG End of algorithm execution | |
TeslaReportAlgo DEBUG ==> Execute | |
TeslaReportAlgo... DEBUG SelReports version check requested | |
TeslaReportAlgo... DEBUG The object of type 'LHCb::HltSelReports*' has been retrieved from TS at address 'Hlt2/SelReports' | |
TeslaReportAlgo... DEBUG Examining mother report | |
TeslaReportAlgo... DEBUG Mother report is of a particle | |
TeslaReportAlgo... DEBUG ReportCheckTool finds verision 2 | |
TeslaReportAlgo DEBUG VersionNum = 2 | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Particle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Particles' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::ProtoParticle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Protos' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Vertex,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Vertices' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Track,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Tracks' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::RichPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/RichPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::MuonPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/MuonPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::VertexBase,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Rec/Vertex/Primary' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'LHCb::Relation1D<LHCb::Particle,LHCb::VertexBase>' is registered in TS at address 'Tesla/Particle2VertexRelations' | |
TeslaReportAlgo DEBUG The object of type 'LHCb::HltVertexReports*' has been retrieved from TS at address 'Hlt1/VertexReports' | |
TeslaReportAlgo DEBUG Available vertex reports: | |
TeslaReportAlgo DEBUG PV3D | |
TeslaReportAlgo DEBUG ProtoPV3D | |
TeslaReportAlgo DEBUG Vertex chi2= 59.0646, ndf =97 | |
TeslaReportAlgo DEBUG Vertex key= 0 | |
TeslaReportAlgo DEBUG Vertex chi2= 20.9617, ndf =49 | |
TeslaReportAlgo DEBUG Vertex key= 1 | |
TeslaReportAlgo DEBUG Vertex chi2= 17.8727, ndf =19 | |
TeslaReportAlgo DEBUG Vertex key= 2 | |
TeslaReportAlgo DEBUG Vertex chi2= 10.5936, ndf =9 | |
TeslaReportAlgo DEBUG Vertex key= 3 | |
TeslaReportAlgo DEBUG The object of type 'LHCb::HltSelReports*' has been retrieved from TS at address 'Hlt2/SelReports' | |
TeslaReportAlgo DEBUG Available reports: | |
TeslaReportAlgo DEBUG Hlt2DiMuonDecision | |
TeslaReportAlgo DEBUG Hlt2DiMuonJPsiDecision | |
TeslaReportAlgo DEBUG Hlt2Global | |
TeslaReportAlgo DEBUG Hlt2SingleMuonLowPTDecision | |
TeslaReportAlgo DEBUG Required line has been fired | |
TeslaReportAlgo DEBUG Reference: | |
TeslaReportAlgo DEBUG Particle class ID = 801 | |
TeslaReportAlgo DEBUG Track class ID = 10010 | |
TeslaReportAlgo DEBUG RecVertex class ID = 10030 | |
TeslaReportAlgo DEBUG Vertex class ID = 802 | |
TeslaReportAlgo DEBUG ProtoParticle class ID = 803 | |
TeslaReportAlgo DEBUG { summarizedObjectCLID : 1 numericalInfo : { 0#SelectionID:50201 , } substructure : { 16:801 , } lhcbIDs : { } } | |
TeslaReportAlgo DEBUG MOTHER CLASS ID = 1 | |
TeslaReportAlgo DEBUG LHCbIDs.size() = 0 | |
TeslaReportAlgo DEBUG Number of triggered candidates = 1 | |
TeslaReportAlgo DEBUG [0xb568200] | |
TeslaReportAlgo DEBUG Starting loop over triggered candidates | |
TeslaReportAlgo DEBUG Mother object CLASS ID = 801 | |
TeslaReportAlgo DEBUG Found mother with ID: 443 | |
TeslaReportAlgo DEBUG Mother has substructure consisting of: | |
TeslaReportAlgo DEBUG 801 | |
TeslaReportAlgo DEBUG 801 | |
TeslaReportAlgo DEBUG 802 | |
TeslaReportAlgo DEBUG Available information | |
TeslaReportAlgo DEBUG 0#Particle.particleID.pid = 443 | |
TeslaReportAlgo DEBUG 1#Particle.measuredMass = 3093.86 | |
TeslaReportAlgo DEBUG 10#Particle.momCov00 = 50.5786 | |
TeslaReportAlgo DEBUG 11#Particle.momCov11 = 82.4303 | |
TeslaReportAlgo DEBUG 12#Particle.momCov22 = 1933.13 | |
TeslaReportAlgo DEBUG 13#Particle.momCov33 = 2042.49 | |
TeslaReportAlgo DEBUG 14#Particle.momCov10 = -50.403 | |
TeslaReportAlgo DEBUG 15#Particle.momCov20 = -221.53 | |
TeslaReportAlgo DEBUG 16#Particle.momCov21 = 303.682 | |
TeslaReportAlgo DEBUG 17#Particle.momCov30 = -229.363 | |
TeslaReportAlgo DEBUG 18#Particle.momCov31 = 314.539 | |
TeslaReportAlgo DEBUG 19#Particle.momCov32 = 1986.8 | |
TeslaReportAlgo DEBUG 2#Particle.referencePoint.z = 89.2181 | |
TeslaReportAlgo DEBUG 20#Particle.posmomCov00 = -0.0610692 | |
TeslaReportAlgo DEBUG 21#Particle.posmomCov11 = -0.0493662 | |
TeslaReportAlgo DEBUG 22#Particle.posmomCov22 = -0.0353577 | |
TeslaReportAlgo DEBUG 23#Particle.posmomCov10 = 0.00597543 | |
TeslaReportAlgo DEBUG 24#Particle.posmomCov01 = -0.00599957 | |
TeslaReportAlgo DEBUG 25#Particle.posmomCov20 = 0.0434817 | |
TeslaReportAlgo DEBUG 26#Particle.posmomCov02 = 0.0782248 | |
TeslaReportAlgo DEBUG 27#Particle.posmomCov21 = 0.0258884 | |
TeslaReportAlgo DEBUG 28#Particle.posmomCov12 = -0.101682 | |
TeslaReportAlgo DEBUG 29#Particle.posmomCov30 = 0.042209 | |
TeslaReportAlgo DEBUG 3#Particle.referencePoint.x = -0.0118466 | |
TeslaReportAlgo DEBUG 30#Particle.posmomCov31 = 0.02984 | |
TeslaReportAlgo DEBUG 31#Particle.posmomCov32 = 0.000790304 | |
TeslaReportAlgo DEBUG 32#Particle.posCov00 = 0.000349202 | |
TeslaReportAlgo DEBUG 33#Particle.posCov11 = 0.000423592 | |
TeslaReportAlgo DEBUG 34#Particle.posCov22 = 0.00811602 | |
TeslaReportAlgo DEBUG 35#Particle.posCov10 = -8.59564e-05 | |
TeslaReportAlgo DEBUG 36#Particle.posCov20 = -0.00100293 | |
TeslaReportAlgo DEBUG 37#Particle.posCov21 = 0.00139285 | |
TeslaReportAlgo DEBUG 4#Particle.referencePoint.y = 0.0537326 | |
TeslaReportAlgo DEBUG 5#Particle.slopes.x = -0.0738499 | |
TeslaReportAlgo DEBUG 6#Particle.slopes.y = 0.109333 | |
TeslaReportAlgo DEBUG 7#Particle.1/p = 5.65638e-05 | |
TeslaReportAlgo DEBUG 8#Particle.conflevel = -1 | |
TeslaReportAlgo DEBUG 9#Particle.massErr = 7.90972 | |
TeslaReportAlgo DEBUG p = 17679.1 | |
TeslaReportAlgo DEBUG p (par_mom) = 17679.1 | |
TeslaReportAlgo DEBUG pT (par_mom) = 2312.5 | |
TeslaReportAlgo DEBUG Particle measured mass = 3093.86 | |
TeslaReportAlgo DEBUG Particle CL = -1 | |
TeslaReportAlgo DEBUG Daughter level 1 CLASS ID = 801 | |
TeslaReportAlgo DEBUG 1st Gen. Daughter ID: -13 | |
TeslaReportAlgo DEBUG Basic daughter level 1 has substructure consisting of: | |
TeslaReportAlgo DEBUG 10010 | |
TeslaReportAlgo DEBUG 803 | |
TeslaReportAlgo DEBUG 11050 | |
TeslaReportAlgo DEBUG 10010 | |
TeslaReportAlgo DEBUG Available information | |
TeslaReportAlgo DEBUG 0#Particle.particleID.pid = -13 | |
TeslaReportAlgo DEBUG 1#Particle.measuredMass = 105.658 | |
TeslaReportAlgo DEBUG 10#Particle.momCov00 = 7.2038 | |
TeslaReportAlgo DEBUG 11#Particle.momCov11 = 8.16568 | |
TeslaReportAlgo DEBUG 12#Particle.momCov22 = 308.767 | |
TeslaReportAlgo DEBUG 13#Particle.momCov33 = 313.147 | |
TeslaReportAlgo DEBUG 14#Particle.momCov10 = -1.93107 | |
TeslaReportAlgo DEBUG 15#Particle.momCov20 = 22.4894 | |
TeslaReportAlgo DEBUG 16#Particle.momCov21 = -29.2562 | |
TeslaReportAlgo DEBUG 17#Particle.momCov30 = 23.0356 | |
TeslaReportAlgo DEBUG 18#Particle.momCov31 = -29.9605 | |
TeslaReportAlgo DEBUG 19#Particle.momCov32 = 310.911 | |
TeslaReportAlgo DEBUG 2#Particle.referencePoint.z = 89.3192 | |
TeslaReportAlgo DEBUG 20#Particle.posmomCov00 = -0.0792417 | |
TeslaReportAlgo DEBUG 21#Particle.posmomCov11 = -0.0734386 | |
TeslaReportAlgo DEBUG 22#Particle.posmomCov22 = 0 | |
TeslaReportAlgo DEBUG 23#Particle.posmomCov10 = -0.00689414 | |
TeslaReportAlgo DEBUG 24#Particle.posmomCov01 = -0.00724603 | |
TeslaReportAlgo DEBUG 25#Particle.posmomCov20 = 0.00428105 | |
TeslaReportAlgo DEBUG 26#Particle.posmomCov02 = 0 | |
TeslaReportAlgo DEBUG 27#Particle.posmomCov21 = -0.00695691 | |
TeslaReportAlgo DEBUG 28#Particle.posmomCov12 = 0 | |
TeslaReportAlgo DEBUG 29#Particle.posmomCov30 = -0.000916486 | |
TeslaReportAlgo DEBUG 3#Particle.referencePoint.x = -0.0340582 | |
TeslaReportAlgo DEBUG 30#Particle.posmomCov31 = -0.000414939 | |
TeslaReportAlgo DEBUG 31#Particle.posmomCov32 = 0 | |
TeslaReportAlgo DEBUG 32#Particle.posCov00 = 0.00130307 | |
TeslaReportAlgo DEBUG 33#Particle.posCov11 = 0.00114345 | |
TeslaReportAlgo DEBUG 34#Particle.posCov22 = 0 | |
TeslaReportAlgo DEBUG 35#Particle.posCov10 = 0.000193906 | |
TeslaReportAlgo DEBUG 36#Particle.posCov20 = 0 | |
TeslaReportAlgo DEBUG 37#Particle.posCov21 = 0 | |
TeslaReportAlgo DEBUG 4#Particle.referencePoint.y = 0.0230668 | |
TeslaReportAlgo DEBUG 5#Particle.slopes.x = 0.0740603 | |
TeslaReportAlgo DEBUG 6#Particle.slopes.y = -0.0963457 | |
TeslaReportAlgo DEBUG 7#Particle.1/p = 0.000173441 | |
TeslaReportAlgo DEBUG 8#Particle.conflevel = 0.250063 | |
TeslaReportAlgo DEBUG 9#Particle.massErr = 0 | |
TeslaReportAlgo DEBUG p = 5765.66 | |
TeslaReportAlgo DEBUG p (par_mom) = 5765.66 | |
TeslaReportAlgo DEBUG pT (par_mom) = 695.534 | |
TeslaReportAlgo DEBUG Particle measured mass = 105.658 | |
TeslaReportAlgo DEBUG Particle CL = 0.250063 | |
TeslaReportAlgo DEBUG Available information (track) | |
TeslaReportAlgo DEBUG 0#Track.firstState.z = 89.3192 | |
TeslaReportAlgo DEBUG 1#Track.firstState.x = -0.0340582 | |
TeslaReportAlgo DEBUG 10#Track.flags = 2.19556e+06 | |
TeslaReportAlgo DEBUG 11#Track.lastState.z = 11900 | |
TeslaReportAlgo DEBUG 12#Track.lastState.x = -591.98 | |
TeslaReportAlgo DEBUG 13#Track.lastState.y = -1127.6 | |
TeslaReportAlgo DEBUG 14#Track.lastState.tx = -0.150611 | |
TeslaReportAlgo DEBUG 15#Track.lastState.ty = -0.0934332 | |
TeslaReportAlgo DEBUG 16#Track.lastState.qOverP = 0.000174774 | |
TeslaReportAlgo DEBUG 2#Track.firstState.y = 0.0230668 | |
TeslaReportAlgo DEBUG 3#Track.firstState.tx = 0.0740603 | |
TeslaReportAlgo DEBUG 4#Track.firstState.ty = -0.0963457 | |
TeslaReportAlgo DEBUG 5#Track.firstState.qOverP = 0.000173441 | |
TeslaReportAlgo DEBUG 6#Track.chi2PerDoF = 0.685779 | |
TeslaReportAlgo DEBUG 7#Track.nDoF = 28 | |
TeslaReportAlgo DEBUG 8#Track.Likelihood = 999 | |
TeslaReportAlgo DEBUG 9#Track.GhostProb = 999 | |
TeslaReportAlgo DEBUG FastTTValidationTool/ValidateWithTT = 0 | |
TeslaReportAlgo DEBUG MatchVeloMuon = 1 | |
TeslaReportAlgo DEBUG PatForwardTool/LooseForward = 1 | |
TeslaReportAlgo DEBUG Track #chi^{2}/DoF = 0.685779 | |
TeslaReportAlgo DEBUG Track extra for Rep v2, adding last state | |
TeslaReportAlgo DEBUG Track details added | |
TeslaReportAlgo DEBUG Available information (proto) | |
TeslaReportAlgo DEBUG 0#Proto.extraInfo.IsPhoton = -1000 | |
TeslaReportAlgo DEBUG Proto isPhoton = -1000 | |
TeslaReportAlgo DEBUG ProtoParticle details added | |
TeslaReportAlgo DEBUG Available information (muon) | |
TeslaReportAlgo DEBUG 0#Muon.MuonLLMu = -2.19373 | |
TeslaReportAlgo DEBUG 1#Muon.MuonLLBg = -4.0255 | |
TeslaReportAlgo DEBUG 2#Muon.NShared = 0 | |
TeslaReportAlgo DEBUG 3#Muon.Status = 31 | |
TeslaReportAlgo DEBUG 4#Muon.IsMuon = 1 | |
TeslaReportAlgo DEBUG 5#Muon.IsMuonLoose = 1 | |
TeslaReportAlgo DEBUG 6#Muon.IsMuonTight = 1 | |
TeslaReportAlgo DEBUG Muon LLMu = -2.19373 | |
TeslaReportAlgo DEBUG MuonPID details added | |
TeslaReportAlgo DEBUG Available information (track) | |
TeslaReportAlgo DEBUG 0#Track.firstState.z = 9450 | |
TeslaReportAlgo DEBUG 1#Track.firstState.x = -225.352 | |
TeslaReportAlgo DEBUG 10#Track.flags = 167 | |
TeslaReportAlgo DEBUG 11#Track.lastState.z = 9450 | |
TeslaReportAlgo DEBUG 12#Track.lastState.x = -225.352 | |
TeslaReportAlgo DEBUG 13#Track.lastState.y = -898.538 | |
TeslaReportAlgo DEBUG 14#Track.lastState.tx = -0.147577 | |
TeslaReportAlgo DEBUG 15#Track.lastState.ty = -0.093664 | |
TeslaReportAlgo DEBUG 16#Track.lastState.qOverP = 0.000174455 | |
TeslaReportAlgo DEBUG 2#Track.firstState.y = -898.538 | |
TeslaReportAlgo DEBUG 3#Track.firstState.tx = -0.147577 | |
TeslaReportAlgo DEBUG 4#Track.firstState.ty = -0.093664 | |
TeslaReportAlgo DEBUG 5#Track.firstState.qOverP = 0.000174455 | |
TeslaReportAlgo DEBUG 6#Track.chi2PerDoF = 0 | |
TeslaReportAlgo DEBUG 7#Track.nDoF = 0 | |
TeslaReportAlgo DEBUG 8#Track.Likelihood = 999 | |
TeslaReportAlgo DEBUG 9#Track.GhostProb = 999 | |
TeslaReportAlgo DEBUG Track #chi^{2}/DoF = 0 | |
TeslaReportAlgo DEBUG Track extra for Rep v2, adding last state | |
TeslaReportAlgo DEBUG Track details added | |
TeslaReportAlgo DEBUG Starting to tie pieces together | |
TeslaReportAlgo DEBUG Pieces tied together | |
TeslaReportAlgo DEBUG Daughter level 1 CLASS ID = 801 | |
TeslaReportAlgo DEBUG 1st Gen. Daughter ID: 13 | |
TeslaReportAlgo DEBUG Basic daughter level 1 has substructure consisting of: | |
TeslaReportAlgo DEBUG 10010 | |
TeslaReportAlgo DEBUG 803 | |
TeslaReportAlgo DEBUG 11050 | |
TeslaReportAlgo DEBUG 10010 | |
TeslaReportAlgo DEBUG Available information | |
TeslaReportAlgo DEBUG 0#Particle.particleID.pid = 13 | |
TeslaReportAlgo DEBUG 1#Particle.measuredMass = 105.658 | |
TeslaReportAlgo DEBUG 10#Particle.momCov00 = 43.5787 | |
TeslaReportAlgo DEBUG 11#Particle.momCov11 = 74.8099 | |
TeslaReportAlgo DEBUG 12#Particle.momCov22 = 1626.66 | |
TeslaReportAlgo DEBUG 13#Particle.momCov33 = 1731.77 | |
TeslaReportAlgo DEBUG 14#Particle.momCov10 = -48.1386 | |
TeslaReportAlgo DEBUG 15#Particle.momCov20 = -243.336 | |
TeslaReportAlgo DEBUG 16#Particle.momCov21 = 334.056 | |
TeslaReportAlgo DEBUG 17#Particle.momCov30 = -251.695 | |
TeslaReportAlgo DEBUG 18#Particle.momCov31 = 345.65 | |
TeslaReportAlgo DEBUG 19#Particle.momCov32 = 1678.25 | |
TeslaReportAlgo DEBUG 2#Particle.referencePoint.z = 89.0421 | |
TeslaReportAlgo DEBUG 20#Particle.posmomCov00 = -0.0467027 | |
TeslaReportAlgo DEBUG 21#Particle.posmomCov11 = -0.0242689 | |
TeslaReportAlgo DEBUG 22#Particle.posmomCov22 = 0 | |
TeslaReportAlgo DEBUG 23#Particle.posmomCov10 = -0.00374822 | |
TeslaReportAlgo DEBUG 24#Particle.posmomCov01 = -0.0200072 | |
TeslaReportAlgo DEBUG 25#Particle.posmomCov20 = 0.048844 | |
TeslaReportAlgo DEBUG 26#Particle.posmomCov02 = 0 | |
TeslaReportAlgo DEBUG 27#Particle.posmomCov21 = 0.041383 | |
TeslaReportAlgo DEBUG 28#Particle.posmomCov12 = 0 | |
TeslaReportAlgo DEBUG 29#Particle.posmomCov30 = 0.0531561 | |
TeslaReportAlgo DEBUG 3#Particle.referencePoint.x = 0.0211573 | |
TeslaReportAlgo DEBUG 30#Particle.posmomCov31 = 0.0380043 | |
TeslaReportAlgo DEBUG 31#Particle.posmomCov32 = 0 | |
TeslaReportAlgo DEBUG 32#Particle.posCov00 = 0.000277665 | |
TeslaReportAlgo DEBUG 33#Particle.posCov11 = 0.000224967 | |
TeslaReportAlgo DEBUG 34#Particle.posCov22 = 0 | |
TeslaReportAlgo DEBUG 35#Particle.posCov10 = 0.000116323 | |
TeslaReportAlgo DEBUG 36#Particle.posCov20 = 0 | |
TeslaReportAlgo DEBUG 37#Particle.posCov21 = 0 | |
TeslaReportAlgo DEBUG 4#Particle.referencePoint.y = 0.0226206 | |
TeslaReportAlgo DEBUG 5#Particle.slopes.x = -0.14551 | |
TeslaReportAlgo DEBUG 6#Particle.slopes.y = 0.209104 | |
TeslaReportAlgo DEBUG 7#Particle.1/p = 8.20859e-05 | |
TeslaReportAlgo DEBUG 8#Particle.conflevel = 0.250063 | |
TeslaReportAlgo DEBUG 9#Particle.massErr = 0 | |
TeslaReportAlgo DEBUG p = 12182.4 | |
TeslaReportAlgo DEBUG p (par_mom) = 12182.4 | |
TeslaReportAlgo DEBUG pT (par_mom) = 3007.4 | |
TeslaReportAlgo DEBUG Particle measured mass = 105.658 | |
TeslaReportAlgo DEBUG Particle CL = 0.250063 | |
TeslaReportAlgo DEBUG Available information (track) | |
TeslaReportAlgo DEBUG 0#Track.firstState.z = 89.0421 | |
TeslaReportAlgo DEBUG 1#Track.firstState.x = 0.0211573 | |
TeslaReportAlgo DEBUG 10#Track.flags = 2.19556e+06 | |
TeslaReportAlgo DEBUG 11#Track.lastState.z = 11900 | |
TeslaReportAlgo DEBUG 12#Track.lastState.x = -980.123 | |
TeslaReportAlgo DEBUG 13#Track.lastState.y = 2426.26 | |
TeslaReportAlgo DEBUG 14#Track.lastState.tx = -0.035385 | |
TeslaReportAlgo DEBUG 15#Track.lastState.ty = 0.204241 | |
TeslaReportAlgo DEBUG 16#Track.lastState.qOverP = -8.243e-05 | |
TeslaReportAlgo DEBUG 2#Track.firstState.y = 0.0226206 | |
TeslaReportAlgo DEBUG 3#Track.firstState.tx = -0.14551 | |
TeslaReportAlgo DEBUG 4#Track.firstState.ty = 0.209104 | |
TeslaReportAlgo DEBUG 5#Track.firstState.qOverP = -8.20859e-05 | |
TeslaReportAlgo DEBUG 6#Track.chi2PerDoF = 1.08019 | |
TeslaReportAlgo DEBUG 7#Track.nDoF = 27 | |
TeslaReportAlgo DEBUG 8#Track.Likelihood = 999 | |
TeslaReportAlgo DEBUG 9#Track.GhostProb = 999 | |
TeslaReportAlgo DEBUG MatchVeloMuon = 1 | |
TeslaReportAlgo DEBUG PatForwardTool/LooseForward = 1 | |
TeslaReportAlgo DEBUG Track #chi^{2}/DoF = 1.08019 | |
TeslaReportAlgo DEBUG Track extra for Rep v2, adding last state | |
TeslaReportAlgo DEBUG Track details added | |
TeslaReportAlgo DEBUG Available information (proto) | |
TeslaReportAlgo DEBUG 0#Proto.extraInfo.IsPhoton = -1000 | |
TeslaReportAlgo DEBUG Proto isPhoton = -1000 | |
TeslaReportAlgo DEBUG ProtoParticle details added | |
TeslaReportAlgo DEBUG Available information (muon) | |
TeslaReportAlgo DEBUG 0#Muon.MuonLLMu = -0.181162 | |
TeslaReportAlgo DEBUG 1#Muon.MuonLLBg = -3.25233 | |
TeslaReportAlgo DEBUG 2#Muon.NShared = 0 | |
TeslaReportAlgo DEBUG 3#Muon.Status = 31 | |
TeslaReportAlgo DEBUG 4#Muon.IsMuon = 1 | |
TeslaReportAlgo DEBUG 5#Muon.IsMuonLoose = 1 | |
TeslaReportAlgo DEBUG 6#Muon.IsMuonTight = 1 | |
TeslaReportAlgo DEBUG Muon LLMu = -0.181162 | |
TeslaReportAlgo DEBUG MuonPID details added | |
TeslaReportAlgo DEBUG Available information (track) | |
TeslaReportAlgo DEBUG 0#Track.firstState.z = 9450 | |
TeslaReportAlgo DEBUG 1#Track.firstState.x = -893.191 | |
TeslaReportAlgo DEBUG 10#Track.flags = 167 | |
TeslaReportAlgo DEBUG 11#Track.lastState.z = 9450 | |
TeslaReportAlgo DEBUG 12#Track.lastState.x = -893.191 | |
TeslaReportAlgo DEBUG 13#Track.lastState.y = 1925.68 | |
TeslaReportAlgo DEBUG 14#Track.lastState.tx = -0.0357197 | |
TeslaReportAlgo DEBUG 15#Track.lastState.ty = 0.204437 | |
TeslaReportAlgo DEBUG 16#Track.lastState.qOverP = -8.23512e-05 | |
TeslaReportAlgo DEBUG 2#Track.firstState.y = 1925.68 | |
TeslaReportAlgo DEBUG 3#Track.firstState.tx = -0.0357197 | |
TeslaReportAlgo DEBUG 4#Track.firstState.ty = 0.204437 | |
TeslaReportAlgo DEBUG 5#Track.firstState.qOverP = -8.23512e-05 | |
TeslaReportAlgo DEBUG 6#Track.chi2PerDoF = 0 | |
TeslaReportAlgo DEBUG 7#Track.nDoF = 0 | |
TeslaReportAlgo DEBUG 8#Track.Likelihood = 999 | |
TeslaReportAlgo DEBUG 9#Track.GhostProb = 999 | |
TeslaReportAlgo DEBUG Track #chi^{2}/DoF = 0 | |
TeslaReportAlgo DEBUG Track extra for Rep v2, adding last state | |
TeslaReportAlgo DEBUG Track details added | |
TeslaReportAlgo DEBUG Starting to tie pieces together | |
TeslaReportAlgo DEBUG Pieces tied together | |
TeslaReportAlgo DEBUG Daughter level 1 CLASS ID = 802 | |
TeslaReportAlgo DEBUG Available information (vertex) | |
TeslaReportAlgo DEBUG 0#Vertex.chi2 = 1.15544 | |
TeslaReportAlgo DEBUG 1#Vertex.ndf = 1 | |
TeslaReportAlgo DEBUG 10#Vertex.cov20 = -0.00100293 | |
TeslaReportAlgo DEBUG 11#Vertex.cov21 = 0.00139285 | |
TeslaReportAlgo DEBUG 2#Vertex.position.x = -0.0118466 | |
TeslaReportAlgo DEBUG 3#Vertex.position.y = 0.0537326 | |
TeslaReportAlgo DEBUG 4#Vertex.position.z = 89.2181 | |
TeslaReportAlgo DEBUG 5#Vertex.technique = 0 | |
TeslaReportAlgo DEBUG 6#Vertex.cov00 = 0.000349202 | |
TeslaReportAlgo DEBUG 7#Vertex.cov11 = 0.000423592 | |
TeslaReportAlgo DEBUG 8#Vertex.cov22 = 0.00811602 | |
TeslaReportAlgo DEBUG 9#Vertex.cov10 = -8.59564e-05 | |
TeslaReportAlgo DEBUG Decay vertex chi2 = 1.15544 | |
TeslaReportAlgo DEBUG Setting mother decay vertex | |
TeslaReportAlgo DEBUG End of algorithm execution | |
TeslaReportAlgo DEBUG ==> Execute | |
TeslaReportAlgo... DEBUG SelReports version check requested | |
TeslaReportAlgo... DEBUG The object of type 'LHCb::HltSelReports*' has been retrieved from TS at address 'Hlt2/SelReports' | |
TeslaReportAlgo DEBUG VersionNum = 99 | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Particle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Particles' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::ProtoParticle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Protos' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Vertex,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Vertices' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Track,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Tracks' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::RichPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/RichPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::MuonPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/MuonPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::VertexBase,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Rec/Vertex/Primary' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'LHCb::Relation1D<LHCb::Particle,LHCb::VertexBase>' is registered in TS at address 'Tesla/Particle2VertexRelations' | |
TeslaReportAlgo DEBUG The object of type 'LHCb::HltVertexReports*' has been retrieved from TS at address 'Hlt1/VertexReports' | |
TeslaReportAlgo DEBUG Available vertex reports: | |
TeslaReportAlgo DEBUG PV3D | |
TeslaReportAlgo DEBUG ProtoPV3D | |
TeslaReportAlgo DEBUG Vertex chi2= 26.4656, ndf =29 | |
TeslaReportAlgo DEBUG Vertex key= 0 | |
TeslaReportAlgo DEBUG Vertex chi2= 10.5051, ndf =9 | |
TeslaReportAlgo DEBUG Vertex key= 1 | |
TeslaReportAlgo DEBUG The object of type 'LHCb::HltSelReports*' has been retrieved from TS at address 'Hlt2/SelReports' | |
TeslaReportAlgo DEBUG Available reports: | |
TeslaReportAlgo DEBUG Hlt2Global | |
TeslaReportAlgo DEBUG Hlt2SingleMuonLowPTDecision | |
TeslaReportAlgo DEBUG End of algorithm execution | |
EventSelector SUCCESS Reading Event record 31. Record number within stream 1: 31 | |
TeslaReportAlgo DEBUG ==> Execute | |
TeslaReportAlgo... DEBUG SelReports version check requested | |
TeslaReportAlgo...WARNING Sel. reports do not exist!!! | |
TeslaReportAlgo DEBUG VersionNum = 0 | |
TeslaReportAlgo WARNING Requested version number does not equal checker response | |
TeslaReportAlgo DEBUG versionNum = 0, m_ReportVersion = 2 | |
TeslaReportAlgo WARNING For your own safety, I will give you less information than requested, please check report generation | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Particle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Particles' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::ProtoParticle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Protos' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Vertex,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Vertices' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Track,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Tracks' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::RichPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/RichPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::MuonPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/MuonPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::VertexBase,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Rec/Vertex/Primary' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'LHCb::Relation1D<LHCb::Particle,LHCb::VertexBase>' is registered in TS at address 'Tesla/Particle2VertexRelations' | |
Hlt1VertexRepor...WARNING HltVertexReportsDecoder:: No HltVertexReports RawBank for requested SourceID in RawEvent. Quiting. | |
TeslaReportAlgo DEBUG The object of type 'LHCb::HltVertexReports*' has been retrieved from TS at address 'Hlt1/VertexReports' | |
TeslaReportAlgo DEBUG Available vertex reports: | |
TeslaReportAlgo WARNING Sel. reports do not exist!!! | |
TeslaReportAlgo DEBUG ==> Execute | |
TeslaReportAlgo... DEBUG SelReports version check requested | |
TeslaReportAlgo... DEBUG The object of type 'LHCb::HltSelReports*' has been retrieved from TS at address 'Hlt2/SelReports' | |
TeslaReportAlgo DEBUG VersionNum = 99 | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Particle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Particles' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::ProtoParticle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Protos' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Vertex,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Vertices' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Track,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Tracks' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::RichPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/RichPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::MuonPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/MuonPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::VertexBase,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Rec/Vertex/Primary' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'LHCb::Relation1D<LHCb::Particle,LHCb::VertexBase>' is registered in TS at address 'Tesla/Particle2VertexRelations' | |
TeslaReportAlgo DEBUG The object of type 'LHCb::HltVertexReports*' has been retrieved from TS at address 'Hlt1/VertexReports' | |
TeslaReportAlgo DEBUG Available vertex reports: | |
TeslaReportAlgo DEBUG PV3D | |
TeslaReportAlgo DEBUG ProtoPV3D | |
TeslaReportAlgo DEBUG Vertex chi2= 15.8142, ndf =23 | |
TeslaReportAlgo DEBUG Vertex key= 0 | |
TeslaReportAlgo DEBUG The object of type 'LHCb::HltSelReports*' has been retrieved from TS at address 'Hlt2/SelReports' | |
TeslaReportAlgo DEBUG Available reports: | |
TeslaReportAlgo DEBUG Hlt2Global | |
TeslaReportAlgo DEBUG Hlt2SingleMuonLowPTDecision | |
TeslaReportAlgo DEBUG End of algorithm execution | |
TeslaReportAlgo DEBUG ==> Execute | |
TeslaReportAlgo... DEBUG SelReports version check requested | |
TeslaReportAlgo... DEBUG The object of type 'LHCb::HltSelReports*' has been retrieved from TS at address 'Hlt2/SelReports' | |
TeslaReportAlgo DEBUG VersionNum = 99 | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Particle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Particles' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::ProtoParticle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Protos' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Vertex,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Vertices' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Track,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Tracks' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::RichPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/RichPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::MuonPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/MuonPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::VertexBase,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Rec/Vertex/Primary' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'LHCb::Relation1D<LHCb::Particle,LHCb::VertexBase>' is registered in TS at address 'Tesla/Particle2VertexRelations' | |
TeslaReportAlgo DEBUG The object of type 'LHCb::HltVertexReports*' has been retrieved from TS at address 'Hlt1/VertexReports' | |
TeslaReportAlgo DEBUG Available vertex reports: | |
TeslaReportAlgo DEBUG PV3D | |
TeslaReportAlgo DEBUG ProtoPV3D | |
TeslaReportAlgo DEBUG Vertex chi2= 4.14984, ndf =7 | |
TeslaReportAlgo DEBUG Vertex key= 0 | |
TeslaReportAlgo DEBUG The object of type 'LHCb::HltSelReports*' has been retrieved from TS at address 'Hlt2/SelReports' | |
TeslaReportAlgo DEBUG Available reports: | |
TeslaReportAlgo DEBUG Hlt2Global | |
TeslaReportAlgo DEBUG Hlt2SingleMuonLowPTDecision | |
TeslaReportAlgo DEBUG End of algorithm execution | |
TeslaReportAlgo DEBUG ==> Execute | |
TeslaReportAlgo... DEBUG SelReports version check requested | |
TeslaReportAlgo... DEBUG The object of type 'LHCb::HltSelReports*' has been retrieved from TS at address 'Hlt2/SelReports' | |
TeslaReportAlgo DEBUG VersionNum = 99 | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Particle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Particles' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::ProtoParticle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Protos' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Vertex,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Vertices' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Track,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Tracks' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::RichPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/RichPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::MuonPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/MuonPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::VertexBase,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Rec/Vertex/Primary' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'LHCb::Relation1D<LHCb::Particle,LHCb::VertexBase>' is registered in TS at address 'Tesla/Particle2VertexRelations' | |
TeslaReportAlgo DEBUG The object of type 'LHCb::HltVertexReports*' has been retrieved from TS at address 'Hlt1/VertexReports' | |
TeslaReportAlgo DEBUG Available vertex reports: | |
TeslaReportAlgo DEBUG PV3D | |
TeslaReportAlgo DEBUG ProtoPV3D | |
TeslaReportAlgo DEBUG Vertex chi2= 82.3885, ndf =115 | |
TeslaReportAlgo DEBUG Vertex key= 0 | |
TeslaReportAlgo DEBUG Vertex chi2= 59.3355, ndf =107 | |
TeslaReportAlgo DEBUG Vertex key= 1 | |
TeslaReportAlgo DEBUG The object of type 'LHCb::HltSelReports*' has been retrieved from TS at address 'Hlt2/SelReports' | |
TeslaReportAlgo DEBUG Available reports: | |
TeslaReportAlgo DEBUG Hlt2Global | |
TeslaReportAlgo DEBUG Hlt2SingleMuonLowPTDecision | |
TeslaReportAlgo DEBUG End of algorithm execution | |
TeslaReportAlgo DEBUG ==> Execute | |
TeslaReportAlgo... DEBUG SelReports version check requested | |
TeslaReportAlgo... DEBUG The object of type 'LHCb::HltSelReports*' has been retrieved from TS at address 'Hlt2/SelReports' | |
TeslaReportAlgo... DEBUG Examining mother report | |
TeslaReportAlgo... DEBUG Mother report is of a particle | |
TeslaReportAlgo... DEBUG ReportCheckTool finds verision 2 | |
TeslaReportAlgo DEBUG VersionNum = 2 | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Particle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Particles' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::ProtoParticle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Protos' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Vertex,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Vertices' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Track,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Tracks' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::RichPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/RichPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::MuonPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/MuonPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::VertexBase,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Rec/Vertex/Primary' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'LHCb::Relation1D<LHCb::Particle,LHCb::VertexBase>' is registered in TS at address 'Tesla/Particle2VertexRelations' | |
TeslaReportAlgo DEBUG The object of type 'LHCb::HltVertexReports*' has been retrieved from TS at address 'Hlt1/VertexReports' | |
TeslaReportAlgo DEBUG Available vertex reports: | |
TeslaReportAlgo DEBUG PV3D | |
TeslaReportAlgo DEBUG ProtoPV3D | |
TeslaReportAlgo DEBUG Vertex chi2= 24.9901, ndf =29 | |
TeslaReportAlgo DEBUG Vertex key= 0 | |
TeslaReportAlgo DEBUG The object of type 'LHCb::HltSelReports*' has been retrieved from TS at address 'Hlt2/SelReports' | |
TeslaReportAlgo DEBUG Available reports: | |
TeslaReportAlgo DEBUG Hlt2DiMuonDecision | |
TeslaReportAlgo DEBUG Hlt2DiMuonJPsiDecision | |
TeslaReportAlgo DEBUG Hlt2Global | |
TeslaReportAlgo DEBUG Hlt2SingleMuonDecision | |
TeslaReportAlgo DEBUG Hlt2SingleMuonLowPTDecision | |
TeslaReportAlgo DEBUG Required line has been fired | |
TeslaReportAlgo DEBUG Reference: | |
TeslaReportAlgo DEBUG Particle class ID = 801 | |
TeslaReportAlgo DEBUG Track class ID = 10010 | |
TeslaReportAlgo DEBUG RecVertex class ID = 10030 | |
TeslaReportAlgo DEBUG Vertex class ID = 802 | |
TeslaReportAlgo DEBUG ProtoParticle class ID = 803 | |
TeslaReportAlgo DEBUG { summarizedObjectCLID : 1 numericalInfo : { 0#SelectionID:50201 , } substructure : { 13:801 , } lhcbIDs : { } } | |
TeslaReportAlgo DEBUG MOTHER CLASS ID = 1 | |
TeslaReportAlgo DEBUG LHCbIDs.size() = 0 | |
TeslaReportAlgo DEBUG Number of triggered candidates = 1 | |
TeslaReportAlgo DEBUG [0xb568880] | |
TeslaReportAlgo DEBUG Starting loop over triggered candidates | |
TeslaReportAlgo DEBUG Mother object CLASS ID = 801 | |
TeslaReportAlgo DEBUG Found mother with ID: 443 | |
TeslaReportAlgo DEBUG Mother has substructure consisting of: | |
TeslaReportAlgo DEBUG 801 | |
TeslaReportAlgo DEBUG 801 | |
TeslaReportAlgo DEBUG 802 | |
TeslaReportAlgo DEBUG Available information | |
TeslaReportAlgo DEBUG 0#Particle.particleID.pid = 443 | |
TeslaReportAlgo DEBUG 1#Particle.measuredMass = 3149.14 | |
TeslaReportAlgo DEBUG 10#Particle.momCov00 = 142.606 | |
TeslaReportAlgo DEBUG 11#Particle.momCov11 = 113.733 | |
TeslaReportAlgo DEBUG 12#Particle.momCov22 = 214730 | |
TeslaReportAlgo DEBUG 13#Particle.momCov33 = 214944 | |
TeslaReportAlgo DEBUG 14#Particle.momCov10 = 106.262 | |
TeslaReportAlgo DEBUG 15#Particle.momCov20 = -5103.1 | |
TeslaReportAlgo DEBUG 16#Particle.momCov21 = -4428.45 | |
TeslaReportAlgo DEBUG 17#Particle.momCov30 = -5105.73 | |
TeslaReportAlgo DEBUG 18#Particle.momCov31 = -4430.42 | |
TeslaReportAlgo DEBUG 19#Particle.momCov32 = 214837 | |
TeslaReportAlgo DEBUG 2#Particle.referencePoint.z = -27.7065 | |
TeslaReportAlgo DEBUG 20#Particle.posmomCov00 = -0.0591138 | |
TeslaReportAlgo DEBUG 21#Particle.posmomCov11 = -0.0543527 | |
TeslaReportAlgo DEBUG 22#Particle.posmomCov22 = 0.67489 | |
TeslaReportAlgo DEBUG 23#Particle.posmomCov10 = -0.00232304 | |
TeslaReportAlgo DEBUG 24#Particle.posmomCov01 = 0.00129005 | |
TeslaReportAlgo DEBUG 25#Particle.posmomCov20 = 0.158207 | |
TeslaReportAlgo DEBUG 26#Particle.posmomCov02 = 0.0424327 | |
TeslaReportAlgo DEBUG 27#Particle.posmomCov21 = 0.026635 | |
TeslaReportAlgo DEBUG 28#Particle.posmomCov12 = 0.0639942 | |
TeslaReportAlgo DEBUG 29#Particle.posmomCov30 = 0.157969 | |
TeslaReportAlgo DEBUG 3#Particle.referencePoint.x = -0.049045 | |
TeslaReportAlgo DEBUG 30#Particle.posmomCov31 = 0.0263717 | |
TeslaReportAlgo DEBUG 31#Particle.posmomCov32 = 0.738478 | |
TeslaReportAlgo DEBUG 32#Particle.posCov00 = 0.000184149 | |
TeslaReportAlgo DEBUG 33#Particle.posCov11 = 0.000170241 | |
TeslaReportAlgo DEBUG 34#Particle.posCov22 = 0.0491343 | |
TeslaReportAlgo DEBUG 35#Particle.posCov10 = -1.32053e-05 | |
TeslaReportAlgo DEBUG 36#Particle.posCov20 = -0.000634396 | |
TeslaReportAlgo DEBUG 37#Particle.posCov21 = -1.42358e-06 | |
TeslaReportAlgo DEBUG 4#Particle.referencePoint.y = 0.0112212 | |
TeslaReportAlgo DEBUG 5#Particle.slopes.x = -0.0207385 | |
TeslaReportAlgo DEBUG 6#Particle.slopes.y = -0.0160147 | |
TeslaReportAlgo DEBUG 7#Particle.1/p = 9.44768e-06 | |
TeslaReportAlgo DEBUG 8#Particle.conflevel = -1 | |
TeslaReportAlgo DEBUG 9#Particle.massErr = 13.4811 | |
TeslaReportAlgo DEBUG p = 105846 | |
TeslaReportAlgo DEBUG p (par_mom) = 105846 | |
TeslaReportAlgo DEBUG pT (par_mom) = 2772.45 | |
TeslaReportAlgo DEBUG Particle measured mass = 3149.14 | |
TeslaReportAlgo DEBUG Particle CL = -1 | |
TeslaReportAlgo DEBUG Daughter level 1 CLASS ID = 801 | |
TeslaReportAlgo DEBUG 1st Gen. Daughter ID: -13 | |
TeslaReportAlgo DEBUG Basic daughter level 1 has substructure consisting of: | |
TeslaReportAlgo DEBUG 10010 | |
TeslaReportAlgo DEBUG 803 | |
TeslaReportAlgo DEBUG 11050 | |
TeslaReportAlgo DEBUG 10010 | |
TeslaReportAlgo DEBUG Available information | |
TeslaReportAlgo DEBUG 0#Particle.particleID.pid = -13 | |
TeslaReportAlgo DEBUG 1#Particle.measuredMass = 105.658 | |
TeslaReportAlgo DEBUG 10#Particle.momCov00 = 4.9347 | |
TeslaReportAlgo DEBUG 11#Particle.momCov11 = 5.45236 | |
TeslaReportAlgo DEBUG 12#Particle.momCov22 = 93.7652 | |
TeslaReportAlgo DEBUG 13#Particle.momCov33 = 95.306 | |
TeslaReportAlgo DEBUG 14#Particle.momCov10 = 0.422973 | |
TeslaReportAlgo DEBUG 15#Particle.momCov20 = 5.45784 | |
TeslaReportAlgo DEBUG 16#Particle.momCov21 = 10.7782 | |
TeslaReportAlgo DEBUG 17#Particle.momCov30 = 5.75477 | |
TeslaReportAlgo DEBUG 18#Particle.momCov31 = 11.3512 | |
TeslaReportAlgo DEBUG 19#Particle.momCov32 = 94.496 | |
TeslaReportAlgo DEBUG 2#Particle.referencePoint.z = -27.4934 | |
TeslaReportAlgo DEBUG 20#Particle.posmomCov00 = -0.0773289 | |
TeslaReportAlgo DEBUG 21#Particle.posmomCov11 = -0.0677264 | |
TeslaReportAlgo DEBUG 22#Particle.posmomCov22 = 0 | |
TeslaReportAlgo DEBUG 23#Particle.posmomCov10 = 0.0045333 | |
TeslaReportAlgo DEBUG 24#Particle.posmomCov01 = 0.00495736 | |
TeslaReportAlgo DEBUG 25#Particle.posmomCov20 = 0.00420622 | |
TeslaReportAlgo DEBUG 26#Particle.posmomCov02 = 0 | |
TeslaReportAlgo DEBUG 27#Particle.posmomCov21 = 0.00780856 | |
TeslaReportAlgo DEBUG 28#Particle.posmomCov12 = 0 | |
TeslaReportAlgo DEBUG 29#Particle.posmomCov30 = 3.79346e-05 | |
TeslaReportAlgo DEBUG 3#Particle.referencePoint.x = -0.0203992 | |
TeslaReportAlgo DEBUG 30#Particle.posmomCov31 = -2.36041e-05 | |
TeslaReportAlgo DEBUG 31#Particle.posmomCov32 = 0 | |
TeslaReportAlgo DEBUG 32#Particle.posCov00 = 0.00137815 | |
TeslaReportAlgo DEBUG 33#Particle.posCov11 = 0.00115821 | |
TeslaReportAlgo DEBUG 34#Particle.posCov22 = 0 | |
TeslaReportAlgo DEBUG 35#Particle.posCov10 = -9.74182e-05 | |
TeslaReportAlgo DEBUG 36#Particle.posCov20 = 0 | |
TeslaReportAlgo DEBUG 37#Particle.posCov21 = 0 | |
TeslaReportAlgo DEBUG 4#Particle.referencePoint.y = 0.0281698 | |
TeslaReportAlgo DEBUG 5#Particle.slopes.x = 0.0609398 | |
TeslaReportAlgo DEBUG 6#Particle.slopes.y = 0.120108 | |
TeslaReportAlgo DEBUG 7#Particle.1/p = 0.000284783 | |
TeslaReportAlgo DEBUG 8#Particle.conflevel = 0.250063 | |
TeslaReportAlgo DEBUG 9#Particle.massErr = 0 | |
TeslaReportAlgo DEBUG p = 3511.45 | |
TeslaReportAlgo DEBUG p (par_mom) = 3511.45 | |
TeslaReportAlgo DEBUG pT (par_mom) = 468.702 | |
TeslaReportAlgo DEBUG Particle measured mass = 105.658 | |
TeslaReportAlgo DEBUG Particle CL = 0.250063 | |
TeslaReportAlgo DEBUG Available information (track) | |
TeslaReportAlgo DEBUG 0#Track.firstState.z = -27.4934 | |
TeslaReportAlgo DEBUG 1#Track.firstState.x = -0.0203992 | |
TeslaReportAlgo DEBUG 10#Track.flags = 98563 | |
TeslaReportAlgo DEBUG 11#Track.lastState.z = 11900 | |
TeslaReportAlgo DEBUG 12#Track.lastState.x = -1752.66 | |
TeslaReportAlgo DEBUG 13#Track.lastState.y = 1379.65 | |
TeslaReportAlgo DEBUG 14#Track.lastState.tx = -0.319766 | |
TeslaReportAlgo DEBUG 15#Track.lastState.ty = 0.106803 | |
TeslaReportAlgo DEBUG 16#Track.lastState.qOverP = 0.000288513 | |
TeslaReportAlgo DEBUG 2#Track.firstState.y = 0.0281698 | |
TeslaReportAlgo DEBUG 3#Track.firstState.tx = 0.0609398 | |
TeslaReportAlgo DEBUG 4#Track.firstState.ty = 0.120108 | |
TeslaReportAlgo DEBUG 5#Track.firstState.qOverP = 0.000284783 | |
TeslaReportAlgo DEBUG 6#Track.chi2PerDoF = 0.767316 | |
TeslaReportAlgo DEBUG 7#Track.nDoF = 35 | |
TeslaReportAlgo DEBUG 8#Track.Likelihood = 999 | |
TeslaReportAlgo DEBUG 9#Track.GhostProb = 999 | |
TeslaReportAlgo DEBUG Track #chi^{2}/DoF = 0.767316 | |
TeslaReportAlgo DEBUG Track extra for Rep v2, adding last state | |
TeslaReportAlgo DEBUG Track details added | |
TeslaReportAlgo DEBUG Available information (proto) | |
TeslaReportAlgo DEBUG 0#Proto.extraInfo.IsPhoton = -1000 | |
TeslaReportAlgo DEBUG Proto isPhoton = -1000 | |
TeslaReportAlgo DEBUG ProtoParticle details added | |
TeslaReportAlgo DEBUG Available information (muon) | |
TeslaReportAlgo DEBUG 0#Muon.MuonLLMu = -0.013592 | |
TeslaReportAlgo DEBUG 1#Muon.MuonLLBg = -0.348336 | |
TeslaReportAlgo DEBUG 2#Muon.NShared = 0 | |
TeslaReportAlgo DEBUG 3#Muon.Status = 31 | |
TeslaReportAlgo DEBUG 4#Muon.IsMuon = 1 | |
TeslaReportAlgo DEBUG 5#Muon.IsMuonLoose = 1 | |
TeslaReportAlgo DEBUG 6#Muon.IsMuonTight = 1 | |
TeslaReportAlgo DEBUG Muon LLMu = -0.013592 | |
TeslaReportAlgo DEBUG MuonPID details added | |
TeslaReportAlgo DEBUG Available information (track) | |
TeslaReportAlgo DEBUG 0#Track.firstState.z = 9450 | |
TeslaReportAlgo DEBUG 1#Track.firstState.x = -972.438 | |
TeslaReportAlgo DEBUG 10#Track.flags = 167 | |
TeslaReportAlgo DEBUG 11#Track.lastState.z = 9450 | |
TeslaReportAlgo DEBUG 12#Track.lastState.x = -972.438 | |
TeslaReportAlgo DEBUG 13#Track.lastState.y = 1117.78 | |
TeslaReportAlgo DEBUG 14#Track.lastState.tx = -0.315497 | |
TeslaReportAlgo DEBUG 15#Track.lastState.ty = 0.107293 | |
TeslaReportAlgo DEBUG 16#Track.lastState.qOverP = 0.000287681 | |
TeslaReportAlgo DEBUG 2#Track.firstState.y = 1117.78 | |
TeslaReportAlgo DEBUG 3#Track.firstState.tx = -0.315497 | |
TeslaReportAlgo DEBUG 4#Track.firstState.ty = 0.107293 | |
TeslaReportAlgo DEBUG 5#Track.firstState.qOverP = 0.000287681 | |
TeslaReportAlgo DEBUG 6#Track.chi2PerDoF = 0 | |
TeslaReportAlgo DEBUG 7#Track.nDoF = 0 | |
TeslaReportAlgo DEBUG 8#Track.Likelihood = 999 | |
TeslaReportAlgo DEBUG 9#Track.GhostProb = 999 | |
TeslaReportAlgo DEBUG Track #chi^{2}/DoF = 0 | |
TeslaReportAlgo DEBUG Track extra for Rep v2, adding last state | |
TeslaReportAlgo DEBUG Track details added | |
TeslaReportAlgo DEBUG Starting to tie pieces together | |
TeslaReportAlgo DEBUG Pieces tied together | |
TeslaReportAlgo DEBUG Daughter level 1 CLASS ID = 801 | |
TeslaReportAlgo DEBUG 1st Gen. Daughter ID: 13 | |
TeslaReportAlgo DEBUG Basic daughter level 1 has substructure consisting of: | |
TeslaReportAlgo DEBUG 10010 | |
TeslaReportAlgo DEBUG 803 | |
TeslaReportAlgo DEBUG 11050 | |
TeslaReportAlgo DEBUG 10010 | |
TeslaReportAlgo DEBUG Available information | |
TeslaReportAlgo DEBUG 0#Particle.particleID.pid = 13 | |
TeslaReportAlgo DEBUG 1#Particle.measuredMass = 105.658 | |
TeslaReportAlgo DEBUG 10#Particle.momCov00 = 137.94 | |
TeslaReportAlgo DEBUG 11#Particle.momCov11 = 108.403 | |
TeslaReportAlgo DEBUG 12#Particle.momCov22 = 214650 | |
TeslaReportAlgo DEBUG 13#Particle.momCov33 = 214863 | |
TeslaReportAlgo DEBUG 14#Particle.momCov10 = 105.657 | |
TeslaReportAlgo DEBUG 15#Particle.momCov20 = -5106.66 | |
TeslaReportAlgo DEBUG 16#Particle.momCov21 = -4440.51 | |
TeslaReportAlgo DEBUG 17#Particle.momCov30 = -5109.58 | |
TeslaReportAlgo DEBUG 18#Particle.momCov31 = -4443.06 | |
TeslaReportAlgo DEBUG 19#Particle.momCov32 = 214756 | |
TeslaReportAlgo DEBUG 2#Particle.referencePoint.z = -29.02 | |
TeslaReportAlgo DEBUG 20#Particle.posmomCov00 = -0.0560271 | |
TeslaReportAlgo DEBUG 21#Particle.posmomCov11 = -0.052242 | |
TeslaReportAlgo DEBUG 22#Particle.posmomCov22 = 0 | |
TeslaReportAlgo DEBUG 23#Particle.posmomCov10 = -0.00240247 | |
TeslaReportAlgo DEBUG 24#Particle.posmomCov01 = 0.000678813 | |
TeslaReportAlgo DEBUG 25#Particle.posmomCov20 = 0.191267 | |
TeslaReportAlgo DEBUG 26#Particle.posmomCov02 = 0 | |
TeslaReportAlgo DEBUG 27#Particle.posmomCov21 = 0.030163 | |
TeslaReportAlgo DEBUG 28#Particle.posmomCov12 = 0 | |
TeslaReportAlgo DEBUG 29#Particle.posmomCov30 = 0.19254 | |
TeslaReportAlgo DEBUG 3#Particle.referencePoint.x = -0.0204328 | |
TeslaReportAlgo DEBUG 30#Particle.posmomCov31 = 0.0312102 | |
TeslaReportAlgo DEBUG 31#Particle.posmomCov32 = 0 | |
TeslaReportAlgo DEBUG 32#Particle.posCov00 = 0.000202831 | |
TeslaReportAlgo DEBUG 33#Particle.posCov11 = 0.000200652 | |
TeslaReportAlgo DEBUG 34#Particle.posCov22 = 0 | |
TeslaReportAlgo DEBUG 35#Particle.posCov10 = -1.53392e-05 | |
TeslaReportAlgo DEBUG 36#Particle.posCov20 = 0 | |
TeslaReportAlgo DEBUG 37#Particle.posCov21 = 0 | |
TeslaReportAlgo DEBUG 4#Particle.referencePoint.y = 0.0397971 | |
TeslaReportAlgo DEBUG 5#Particle.slopes.x = -0.0235192 | |
TeslaReportAlgo DEBUG 6#Particle.slopes.y = -0.0206426 | |
TeslaReportAlgo DEBUG 7#Particle.1/p = 9.76772e-06 | |
TeslaReportAlgo DEBUG 8#Particle.conflevel = 0.250063 | |
TeslaReportAlgo DEBUG 9#Particle.massErr = 0 | |
TeslaReportAlgo DEBUG p = 102378 | |
TeslaReportAlgo DEBUG p (par_mom) = 102378 | |
TeslaReportAlgo DEBUG pT (par_mom) = 3202.18 | |
TeslaReportAlgo DEBUG Particle measured mass = 105.658 | |
TeslaReportAlgo DEBUG Particle CL = 0.250063 | |
TeslaReportAlgo DEBUG Available information (track) | |
TeslaReportAlgo DEBUG 0#Track.firstState.z = -29.02 | |
TeslaReportAlgo DEBUG 1#Track.firstState.x = -0.0204328 | |
TeslaReportAlgo DEBUG 10#Track.flags = 2.19556e+06 | |
TeslaReportAlgo DEBUG 11#Track.lastState.z = 11900 | |
TeslaReportAlgo DEBUG 12#Track.lastState.x = -200.222 | |
TeslaReportAlgo DEBUG 13#Track.lastState.y = -247.179 | |
TeslaReportAlgo DEBUG 14#Track.lastState.tx = -0.0111696 | |
TeslaReportAlgo DEBUG 15#Track.lastState.ty = -0.0207209 | |
TeslaReportAlgo DEBUG 16#Track.lastState.qOverP = -9.77317e-06 | |
TeslaReportAlgo DEBUG 2#Track.firstState.y = 0.0397971 | |
TeslaReportAlgo DEBUG 3#Track.firstState.tx = -0.0235192 | |
TeslaReportAlgo DEBUG 4#Track.firstState.ty = -0.0206426 | |
TeslaReportAlgo DEBUG 5#Track.firstState.qOverP = -9.76772e-06 | |
TeslaReportAlgo DEBUG 6#Track.chi2PerDoF = 0.797847 | |
TeslaReportAlgo DEBUG 7#Track.nDoF = 25 | |
TeslaReportAlgo DEBUG 8#Track.Likelihood = 999 | |
TeslaReportAlgo DEBUG 9#Track.GhostProb = 999 | |
TeslaReportAlgo DEBUG FastTTValidationTool/ValidateWithTT = 1 | |
TeslaReportAlgo DEBUG MatchVeloMuon = 1 | |
TeslaReportAlgo DEBUG PatForwardTool/LooseForward = 1 | |
TeslaReportAlgo DEBUG PatForwardTool/TightForward = 1 | |
TeslaReportAlgo DEBUG Track #chi^{2}/DoF = 0.797847 | |
TeslaReportAlgo DEBUG Track extra for Rep v2, adding last state | |
TeslaReportAlgo DEBUG Track details added | |
TeslaReportAlgo DEBUG Available information (proto) | |
TeslaReportAlgo DEBUG 0#Proto.extraInfo.IsPhoton = -1000 | |
TeslaReportAlgo DEBUG Proto isPhoton = -1000 | |
TeslaReportAlgo DEBUG ProtoParticle details added | |
TeslaReportAlgo DEBUG Available information (muon) | |
TeslaReportAlgo DEBUG 0#Muon.MuonLLMu = -0.885519 | |
TeslaReportAlgo DEBUG 1#Muon.MuonLLBg = -5.18684 | |
TeslaReportAlgo DEBUG 2#Muon.NShared = 0 | |
TeslaReportAlgo DEBUG 3#Muon.Status = 31 | |
TeslaReportAlgo DEBUG 4#Muon.IsMuon = 1 | |
TeslaReportAlgo DEBUG 5#Muon.IsMuonLoose = 1 | |
TeslaReportAlgo DEBUG 6#Muon.IsMuonTight = 1 | |
TeslaReportAlgo DEBUG Muon LLMu = -0.885519 | |
TeslaReportAlgo DEBUG MuonPID details added | |
TeslaReportAlgo DEBUG Available information (track) | |
TeslaReportAlgo DEBUG 0#Track.firstState.z = 9450 | |
TeslaReportAlgo DEBUG 1#Track.firstState.x = -172.691 | |
TeslaReportAlgo DEBUG 10#Track.flags = 167 | |
TeslaReportAlgo DEBUG 11#Track.lastState.z = 9450 | |
TeslaReportAlgo DEBUG 12#Track.lastState.x = -172.691 | |
TeslaReportAlgo DEBUG 13#Track.lastState.y = -196.411 | |
TeslaReportAlgo DEBUG 14#Track.lastState.tx = -0.0113792 | |
TeslaReportAlgo DEBUG 15#Track.lastState.ty = -0.0207229 | |
TeslaReportAlgo DEBUG 16#Track.lastState.qOverP = -9.77194e-06 | |
TeslaReportAlgo DEBUG 2#Track.firstState.y = -196.411 | |
TeslaReportAlgo DEBUG 3#Track.firstState.tx = -0.0113792 | |
TeslaReportAlgo DEBUG 4#Track.firstState.ty = -0.0207229 | |
TeslaReportAlgo DEBUG 5#Track.firstState.qOverP = -9.77194e-06 | |
TeslaReportAlgo DEBUG 6#Track.chi2PerDoF = 0 | |
TeslaReportAlgo DEBUG 7#Track.nDoF = 0 | |
TeslaReportAlgo DEBUG 8#Track.Likelihood = 999 | |
TeslaReportAlgo DEBUG 9#Track.GhostProb = 999 | |
TeslaReportAlgo DEBUG Track #chi^{2}/DoF = 0 | |
TeslaReportAlgo DEBUG Track extra for Rep v2, adding last state | |
TeslaReportAlgo DEBUG Track details added | |
TeslaReportAlgo DEBUG Starting to tie pieces together | |
TeslaReportAlgo DEBUG Pieces tied together | |
TeslaReportAlgo DEBUG Daughter level 1 CLASS ID = 802 | |
TeslaReportAlgo DEBUG Available information (vertex) | |
TeslaReportAlgo DEBUG 0#Vertex.chi2 = 0.259936 | |
TeslaReportAlgo DEBUG 1#Vertex.ndf = 1 | |
TeslaReportAlgo DEBUG 10#Vertex.cov20 = -0.000634396 | |
TeslaReportAlgo DEBUG 11#Vertex.cov21 = -1.42358e-06 | |
TeslaReportAlgo DEBUG 2#Vertex.position.x = -0.049045 | |
TeslaReportAlgo DEBUG 3#Vertex.position.y = 0.0112212 | |
TeslaReportAlgo DEBUG 4#Vertex.position.z = -27.7065 | |
TeslaReportAlgo DEBUG 5#Vertex.technique = 0 | |
TeslaReportAlgo DEBUG 6#Vertex.cov00 = 0.000184149 | |
TeslaReportAlgo DEBUG 7#Vertex.cov11 = 0.000170241 | |
TeslaReportAlgo DEBUG 8#Vertex.cov22 = 0.0491343 | |
TeslaReportAlgo DEBUG 9#Vertex.cov10 = -1.32053e-05 | |
TeslaReportAlgo DEBUG Decay vertex chi2 = 0.259936 | |
TeslaReportAlgo DEBUG Setting mother decay vertex | |
TeslaReportAlgo DEBUG End of algorithm execution | |
TeslaReportAlgo DEBUG ==> Execute | |
TeslaReportAlgo... DEBUG SelReports version check requested | |
TeslaReportAlgo... DEBUG The object of type 'LHCb::HltSelReports*' has been retrieved from TS at address 'Hlt2/SelReports' | |
TeslaReportAlgo... DEBUG Examining mother report | |
TeslaReportAlgo... DEBUG Mother report is of a particle | |
TeslaReportAlgo... DEBUG ReportCheckTool finds verision 2 | |
TeslaReportAlgo DEBUG VersionNum = 2 | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Particle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Particles' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::ProtoParticle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Protos' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Vertex,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Vertices' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Track,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Tracks' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::RichPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/RichPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::MuonPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/MuonPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::VertexBase,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Rec/Vertex/Primary' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'LHCb::Relation1D<LHCb::Particle,LHCb::VertexBase>' is registered in TS at address 'Tesla/Particle2VertexRelations' | |
TeslaReportAlgo DEBUG The object of type 'LHCb::HltVertexReports*' has been retrieved from TS at address 'Hlt1/VertexReports' | |
TeslaReportAlgo DEBUG Available vertex reports: | |
TeslaReportAlgo DEBUG PV3D | |
TeslaReportAlgo DEBUG ProtoPV3D | |
TeslaReportAlgo DEBUG Vertex chi2= 45.7337, ndf =63 | |
TeslaReportAlgo DEBUG Vertex key= 0 | |
TeslaReportAlgo DEBUG Vertex chi2= 10.9983, ndf =19 | |
TeslaReportAlgo DEBUG Vertex key= 1 | |
TeslaReportAlgo DEBUG The object of type 'LHCb::HltSelReports*' has been retrieved from TS at address 'Hlt2/SelReports' | |
TeslaReportAlgo DEBUG Available reports: | |
TeslaReportAlgo DEBUG Hlt2DiMuonDecision | |
TeslaReportAlgo DEBUG Hlt2DiMuonJPsiDecision | |
TeslaReportAlgo DEBUG Hlt2Global | |
TeslaReportAlgo DEBUG Hlt2SingleMuonLowPTDecision | |
TeslaReportAlgo DEBUG Required line has been fired | |
TeslaReportAlgo DEBUG Reference: | |
TeslaReportAlgo DEBUG Particle class ID = 801 | |
TeslaReportAlgo DEBUG Track class ID = 10010 | |
TeslaReportAlgo DEBUG RecVertex class ID = 10030 | |
TeslaReportAlgo DEBUG Vertex class ID = 802 | |
TeslaReportAlgo DEBUG ProtoParticle class ID = 803 | |
TeslaReportAlgo DEBUG { summarizedObjectCLID : 1 numericalInfo : { 0#SelectionID:50201 , } substructure : { 14:801 , } lhcbIDs : { } } | |
TeslaReportAlgo DEBUG MOTHER CLASS ID = 1 | |
TeslaReportAlgo DEBUG LHCbIDs.size() = 0 | |
TeslaReportAlgo DEBUG Number of triggered candidates = 1 | |
TeslaReportAlgo DEBUG [0xb568c00] | |
TeslaReportAlgo DEBUG Starting loop over triggered candidates | |
TeslaReportAlgo DEBUG Mother object CLASS ID = 801 | |
TeslaReportAlgo DEBUG Found mother with ID: 443 | |
TeslaReportAlgo DEBUG Mother has substructure consisting of: | |
TeslaReportAlgo DEBUG 801 | |
TeslaReportAlgo DEBUG 801 | |
TeslaReportAlgo DEBUG 802 | |
TeslaReportAlgo DEBUG Available information | |
TeslaReportAlgo DEBUG 0#Particle.particleID.pid = 443 | |
TeslaReportAlgo DEBUG 1#Particle.measuredMass = 3110.11 | |
TeslaReportAlgo DEBUG 10#Particle.momCov00 = 107.291 | |
TeslaReportAlgo DEBUG 11#Particle.momCov11 = 312.146 | |
TeslaReportAlgo DEBUG 12#Particle.momCov22 = 27115.5 | |
TeslaReportAlgo DEBUG 13#Particle.momCov33 = 27503.4 | |
TeslaReportAlgo DEBUG 14#Particle.momCov10 = -143.573 | |
TeslaReportAlgo DEBUG 15#Particle.momCov20 = -1556.12 | |
TeslaReportAlgo DEBUG 16#Particle.momCov21 = 2660.67 | |
TeslaReportAlgo DEBUG 17#Particle.momCov30 = -1568.02 | |
TeslaReportAlgo DEBUG 18#Particle.momCov31 = 2681.07 | |
TeslaReportAlgo DEBUG 19#Particle.momCov32 = 27308.7 | |
TeslaReportAlgo DEBUG 2#Particle.referencePoint.z = 37.1964 | |
TeslaReportAlgo DEBUG 20#Particle.posmomCov00 = -0.0245616 | |
TeslaReportAlgo DEBUG 21#Particle.posmomCov11 = -0.0366241 | |
TeslaReportAlgo DEBUG 22#Particle.posmomCov22 = 0.742539 | |
TeslaReportAlgo DEBUG 23#Particle.posmomCov10 = -0.0166581 | |
TeslaReportAlgo DEBUG 24#Particle.posmomCov01 = -0.00298967 | |
TeslaReportAlgo DEBUG 25#Particle.posmomCov20 = -0.202845 | |
TeslaReportAlgo DEBUG 26#Particle.posmomCov02 = -0.0128127 | |
TeslaReportAlgo DEBUG 27#Particle.posmomCov21 = 0.0184707 | |
TeslaReportAlgo DEBUG 28#Particle.posmomCov12 = -0.0517852 | |
TeslaReportAlgo DEBUG 29#Particle.posmomCov30 = -0.204462 | |
TeslaReportAlgo DEBUG 3#Particle.referencePoint.x = 0.0253662 | |
TeslaReportAlgo DEBUG 30#Particle.posmomCov31 = 0.0194988 | |
TeslaReportAlgo DEBUG 31#Particle.posmomCov32 = 0.778028 | |
TeslaReportAlgo DEBUG 32#Particle.posCov00 = 0.000221598 | |
TeslaReportAlgo DEBUG 33#Particle.posCov11 = 0.000240231 | |
TeslaReportAlgo DEBUG 34#Particle.posCov22 = 0.0243167 | |
TeslaReportAlgo DEBUG 35#Particle.posCov10 = -0.000135325 | |
TeslaReportAlgo DEBUG 36#Particle.posCov20 = -0.00178599 | |
TeslaReportAlgo DEBUG 37#Particle.posCov21 = 0.00207399 | |
TeslaReportAlgo DEBUG 4#Particle.referencePoint.y = -0.00996555 | |
TeslaReportAlgo DEBUG 5#Particle.slopes.x = -0.0650793 | |
TeslaReportAlgo DEBUG 6#Particle.slopes.y = 0.0714729 | |
TeslaReportAlgo DEBUG 7#Particle.1/p = 2.06754e-05 | |
TeslaReportAlgo DEBUG 8#Particle.conflevel = -1 | |
TeslaReportAlgo DEBUG 9#Particle.massErr = 9.88012 | |
TeslaReportAlgo DEBUG p = 48366.6 | |
TeslaReportAlgo DEBUG p (par_mom) = 48366.6 | |
TeslaReportAlgo DEBUG pT (par_mom) = 4653.56 | |
TeslaReportAlgo DEBUG Particle measured mass = 3110.11 | |
TeslaReportAlgo DEBUG Particle CL = -1 | |
TeslaReportAlgo DEBUG Daughter level 1 CLASS ID = 801 | |
TeslaReportAlgo DEBUG 1st Gen. Daughter ID: -13 | |
TeslaReportAlgo DEBUG Basic daughter level 1 has substructure consisting of: | |
TeslaReportAlgo DEBUG 10010 | |
TeslaReportAlgo DEBUG 803 | |
TeslaReportAlgo DEBUG 11050 | |
TeslaReportAlgo DEBUG 10010 | |
TeslaReportAlgo DEBUG Available information | |
TeslaReportAlgo DEBUG 0#Particle.particleID.pid = -13 | |
TeslaReportAlgo DEBUG 1#Particle.measuredMass = 105.658 | |
TeslaReportAlgo DEBUG 10#Particle.momCov00 = 89.2075 | |
TeslaReportAlgo DEBUG 11#Particle.momCov11 = 305.73 | |
TeslaReportAlgo DEBUG 12#Particle.momCov22 = 25402.6 | |
TeslaReportAlgo DEBUG 13#Particle.momCov33 = 25775.9 | |
TeslaReportAlgo DEBUG 14#Particle.momCov10 = -150.951 | |
TeslaReportAlgo DEBUG 15#Particle.momCov20 = -1407.73 | |
TeslaReportAlgo DEBUG 16#Particle.momCov21 = 2739.78 | |
TeslaReportAlgo DEBUG 17#Particle.momCov30 = -1418.58 | |
TeslaReportAlgo DEBUG 18#Particle.momCov31 = 2760.87 | |
TeslaReportAlgo DEBUG 19#Particle.momCov32 = 25588.5 | |
TeslaReportAlgo DEBUG 2#Particle.referencePoint.z = 37.4096 | |
TeslaReportAlgo DEBUG 20#Particle.posmomCov00 = -0.0202912 | |
TeslaReportAlgo DEBUG 21#Particle.posmomCov11 = -0.0316405 | |
TeslaReportAlgo DEBUG 22#Particle.posmomCov22 = 0 | |
TeslaReportAlgo DEBUG 23#Particle.posmomCov10 = -0.0257274 | |
TeslaReportAlgo DEBUG 24#Particle.posmomCov01 = -0.00109678 | |
TeslaReportAlgo DEBUG 25#Particle.posmomCov20 = -0.19329 | |
TeslaReportAlgo DEBUG 26#Particle.posmomCov02 = 0 | |
TeslaReportAlgo DEBUG 27#Particle.posmomCov21 = -0.0645871 | |
TeslaReportAlgo DEBUG 28#Particle.posmomCov12 = 0 | |
TeslaReportAlgo DEBUG 29#Particle.posmomCov30 = -0.193457 | |
TeslaReportAlgo DEBUG 3#Particle.referencePoint.x = 0.0112101 | |
TeslaReportAlgo DEBUG 30#Particle.posmomCov31 = -0.0674206 | |
TeslaReportAlgo DEBUG 31#Particle.posmomCov32 = 0 | |
TeslaReportAlgo DEBUG 32#Particle.posCov00 = 0.000117098 | |
TeslaReportAlgo DEBUG 33#Particle.posCov11 = 7.50249e-05 | |
TeslaReportAlgo DEBUG 34#Particle.posCov22 = 0 | |
TeslaReportAlgo DEBUG 35#Particle.posCov10 = 2.76751e-05 | |
TeslaReportAlgo DEBUG 36#Particle.posCov20 = 0 | |
TeslaReportAlgo DEBUG 37#Particle.posCov21 = 0 | |
TeslaReportAlgo DEBUG 4#Particle.referencePoint.y = 0.0127136 | |
TeslaReportAlgo DEBUG 5#Particle.slopes.x = -0.0574451 | |
TeslaReportAlgo DEBUG 6#Particle.slopes.y = 0.107272 | |
TeslaReportAlgo DEBUG 7#Particle.1/p = 2.72761e-05 | |
TeslaReportAlgo DEBUG 8#Particle.conflevel = 0.250063 | |
TeslaReportAlgo DEBUG 9#Particle.massErr = 0 | |
TeslaReportAlgo DEBUG p = 36662.1 | |
TeslaReportAlgo DEBUG p (par_mom) = 36662.1 | |
TeslaReportAlgo DEBUG pT (par_mom) = 4428.57 | |
TeslaReportAlgo DEBUG Particle measured mass = 105.658 | |
TeslaReportAlgo DEBUG Particle CL = 0.250063 | |
TeslaReportAlgo DEBUG Available information (track) | |
TeslaReportAlgo DEBUG 0#Track.firstState.z = 37.4096 | |
TeslaReportAlgo DEBUG 1#Track.firstState.x = 0.0112101 | |
TeslaReportAlgo DEBUG 10#Track.flags = 2.19556e+06 | |
TeslaReportAlgo DEBUG 11#Track.lastState.z = 11900 | |
TeslaReportAlgo DEBUG 12#Track.lastState.x = -911.645 | |
TeslaReportAlgo DEBUG 13#Track.lastState.y = 1271.93 | |
TeslaReportAlgo DEBUG 14#Track.lastState.tx = -0.0926298 | |
TeslaReportAlgo DEBUG 15#Track.lastState.ty = 0.107143 | |
TeslaReportAlgo DEBUG 16#Track.lastState.qOverP = 2.73156e-05 | |
TeslaReportAlgo DEBUG 2#Track.firstState.y = 0.0127136 | |
TeslaReportAlgo DEBUG 3#Track.firstState.tx = -0.0574451 | |
TeslaReportAlgo DEBUG 4#Track.firstState.ty = 0.107272 | |
TeslaReportAlgo DEBUG 5#Track.firstState.qOverP = 2.72761e-05 | |
TeslaReportAlgo DEBUG 6#Track.chi2PerDoF = 1.10249 | |
TeslaReportAlgo DEBUG 7#Track.nDoF = 31 | |
TeslaReportAlgo DEBUG 8#Track.Likelihood = 999 | |
TeslaReportAlgo DEBUG 9#Track.GhostProb = 999 | |
TeslaReportAlgo DEBUG MatchVeloMuon = 1 | |
TeslaReportAlgo DEBUG PatForwardTool/LooseForward = 1 | |
TeslaReportAlgo DEBUG Track #chi^{2}/DoF = 1.10249 | |
TeslaReportAlgo DEBUG Track extra for Rep v2, adding last state | |
TeslaReportAlgo DEBUG Track details added | |
TeslaReportAlgo DEBUG Available information (proto) | |
TeslaReportAlgo DEBUG 0#Proto.extraInfo.IsPhoton = -1000 | |
TeslaReportAlgo DEBUG Proto isPhoton = -1000 | |
TeslaReportAlgo DEBUG ProtoParticle details added | |
TeslaReportAlgo DEBUG Available information (muon) | |
TeslaReportAlgo DEBUG 0#Muon.MuonLLMu = -0.978432 | |
TeslaReportAlgo DEBUG 1#Muon.MuonLLBg = -5.28929 | |
TeslaReportAlgo DEBUG 2#Muon.NShared = 0 | |
TeslaReportAlgo DEBUG 3#Muon.Status = 31 | |
TeslaReportAlgo DEBUG 4#Muon.IsMuon = 1 | |
TeslaReportAlgo DEBUG 5#Muon.IsMuonLoose = 1 | |
TeslaReportAlgo DEBUG 6#Muon.IsMuonTight = 1 | |
TeslaReportAlgo DEBUG Muon LLMu = -0.978432 | |
TeslaReportAlgo DEBUG MuonPID details added | |
TeslaReportAlgo DEBUG Available information (track) | |
TeslaReportAlgo DEBUG 0#Track.firstState.z = 9450 | |
TeslaReportAlgo DEBUG 1#Track.firstState.x = -685.034 | |
TeslaReportAlgo DEBUG 10#Track.flags = 167 | |
TeslaReportAlgo DEBUG 11#Track.lastState.z = 9450 | |
TeslaReportAlgo DEBUG 12#Track.lastState.x = -685.034 | |
TeslaReportAlgo DEBUG 13#Track.lastState.y = 1009.44 | |
TeslaReportAlgo DEBUG 14#Track.lastState.tx = -0.0922025 | |
TeslaReportAlgo DEBUG 15#Track.lastState.ty = 0.10713 | |
TeslaReportAlgo DEBUG 16#Track.lastState.qOverP = 2.73065e-05 | |
TeslaReportAlgo DEBUG 2#Track.firstState.y = 1009.44 | |
TeslaReportAlgo DEBUG 3#Track.firstState.tx = -0.0922025 | |
TeslaReportAlgo DEBUG 4#Track.firstState.ty = 0.10713 | |
TeslaReportAlgo DEBUG 5#Track.firstState.qOverP = 2.73065e-05 | |
TeslaReportAlgo DEBUG 6#Track.chi2PerDoF = 0 | |
TeslaReportAlgo DEBUG 7#Track.nDoF = 0 | |
TeslaReportAlgo DEBUG 8#Track.Likelihood = 999 | |
TeslaReportAlgo DEBUG 9#Track.GhostProb = 999 | |
TeslaReportAlgo DEBUG Track #chi^{2}/DoF = 0 | |
TeslaReportAlgo DEBUG Track extra for Rep v2, adding last state | |
TeslaReportAlgo DEBUG Track details added | |
TeslaReportAlgo DEBUG Starting to tie pieces together | |
TeslaReportAlgo DEBUG Pieces tied together | |
TeslaReportAlgo DEBUG Daughter level 1 CLASS ID = 801 | |
TeslaReportAlgo DEBUG 1st Gen. Daughter ID: 13 | |
TeslaReportAlgo DEBUG Basic daughter level 1 has substructure consisting of: | |
TeslaReportAlgo DEBUG 10010 | |
TeslaReportAlgo DEBUG 803 | |
TeslaReportAlgo DEBUG 11050 | |
TeslaReportAlgo DEBUG 10010 | |
TeslaReportAlgo DEBUG Available information | |
TeslaReportAlgo DEBUG 0#Particle.particleID.pid = 13 | |
TeslaReportAlgo DEBUG 1#Particle.measuredMass = 105.658 | |
TeslaReportAlgo DEBUG 10#Particle.momCov00 = 19.2641 | |
TeslaReportAlgo DEBUG 11#Particle.momCov11 = 8.22248 | |
TeslaReportAlgo DEBUG 12#Particle.momCov22 = 1766.56 | |
TeslaReportAlgo DEBUG 13#Particle.momCov33 = 1783.02 | |
TeslaReportAlgo DEBUG 14#Particle.momCov10 = 5.91754 | |
TeslaReportAlgo DEBUG 15#Particle.momCov20 = -156.342 | |
TeslaReportAlgo DEBUG 16#Particle.momCov21 = -69.2749 | |
TeslaReportAlgo DEBUG 17#Particle.momCov30 = -157.537 | |
TeslaReportAlgo DEBUG 18#Particle.momCov31 = -69.7928 | |
TeslaReportAlgo DEBUG 19#Particle.momCov32 = 1774.75 | |
TeslaReportAlgo DEBUG 2#Particle.referencePoint.z = 37.1917 | |
TeslaReportAlgo DEBUG 20#Particle.posmomCov00 = -0.0458137 | |
TeslaReportAlgo DEBUG 21#Particle.posmomCov11 = -0.0479418 | |
TeslaReportAlgo DEBUG 22#Particle.posmomCov22 = 0 | |
TeslaReportAlgo DEBUG 23#Particle.posmomCov10 = 0.0036275 | |
TeslaReportAlgo DEBUG 24#Particle.posmomCov01 = 0.00400763 | |
TeslaReportAlgo DEBUG 25#Particle.posmomCov20 = -0.00142001 | |
TeslaReportAlgo DEBUG 26#Particle.posmomCov02 = 0 | |
TeslaReportAlgo DEBUG 27#Particle.posmomCov21 = -0.00284329 | |
TeslaReportAlgo DEBUG 28#Particle.posmomCov12 = 0 | |
TeslaReportAlgo DEBUG 29#Particle.posmomCov30 = 0.00249104 | |
TeslaReportAlgo DEBUG 3#Particle.referencePoint.x = 0.0335071 | |
TeslaReportAlgo DEBUG 30#Particle.posmomCov31 = -0.00130552 | |
TeslaReportAlgo DEBUG 31#Particle.posmomCov32 = 0 | |
TeslaReportAlgo DEBUG 32#Particle.posCov00 = 0.000438842 | |
TeslaReportAlgo DEBUG 33#Particle.posCov11 = 0.000488867 | |
TeslaReportAlgo DEBUG 34#Particle.posCov22 = 0 | |
TeslaReportAlgo DEBUG 35#Particle.posCov10 = -6.44481e-05 | |
TeslaReportAlgo DEBUG 36#Particle.posCov20 = 0 | |
TeslaReportAlgo DEBUG 37#Particle.posCov21 = 0 | |
TeslaReportAlgo DEBUG 4#Particle.referencePoint.y = -0.0126645 | |
TeslaReportAlgo DEBUG 5#Particle.slopes.x = -0.0887432 | |
TeslaReportAlgo DEBUG 6#Particle.slopes.y = -0.0393652 | |
TeslaReportAlgo DEBUG 7#Particle.1/p = 8.46965e-05 | |
TeslaReportAlgo DEBUG 8#Particle.conflevel = 0.250063 | |
TeslaReportAlgo DEBUG 9#Particle.massErr = 0 | |
TeslaReportAlgo DEBUG p = 11806.9 | |
TeslaReportAlgo DEBUG p (par_mom) = 11806.9 | |
TeslaReportAlgo DEBUG pT (par_mom) = 1140.87 | |
TeslaReportAlgo DEBUG Particle measured mass = 105.658 | |
TeslaReportAlgo DEBUG Particle CL = 0.250063 | |
TeslaReportAlgo DEBUG Available information (track) | |
TeslaReportAlgo DEBUG 0#Track.firstState.z = 37.1917 | |
TeslaReportAlgo DEBUG 1#Track.firstState.x = 0.0335071 | |
TeslaReportAlgo DEBUG 10#Track.flags = 2.19556e+06 | |
TeslaReportAlgo DEBUG 11#Track.lastState.z = 11900 | |
TeslaReportAlgo DEBUG 12#Track.lastState.x = -346.975 | |
TeslaReportAlgo DEBUG 13#Track.lastState.y = -460.328 | |
TeslaReportAlgo DEBUG 14#Track.lastState.tx = 0.0192733 | |
TeslaReportAlgo DEBUG 15#Track.lastState.ty = -0.0384399 | |
TeslaReportAlgo DEBUG 16#Track.lastState.qOverP = -8.50354e-05 | |
TeslaReportAlgo DEBUG 2#Track.firstState.y = -0.0126645 | |
TeslaReportAlgo DEBUG 3#Track.firstState.tx = -0.0887432 | |
TeslaReportAlgo DEBUG 4#Track.firstState.ty = -0.0393652 | |
TeslaReportAlgo DEBUG 5#Track.firstState.qOverP = -8.46965e-05 | |
TeslaReportAlgo DEBUG 6#Track.chi2PerDoF = 0.820149 | |
TeslaReportAlgo DEBUG 7#Track.nDoF = 33 | |
TeslaReportAlgo DEBUG 8#Track.Likelihood = 999 | |
TeslaReportAlgo DEBUG 9#Track.GhostProb = 999 | |
TeslaReportAlgo DEBUG MatchVeloMuon = 1 | |
TeslaReportAlgo DEBUG PatForwardTool/LooseForward = 1 | |
TeslaReportAlgo DEBUG Track #chi^{2}/DoF = 0.820149 | |
TeslaReportAlgo DEBUG Track extra for Rep v2, adding last state | |
TeslaReportAlgo DEBUG Track details added | |
TeslaReportAlgo DEBUG Available information (proto) | |
TeslaReportAlgo DEBUG 0#Proto.extraInfo.IsPhoton = -1000 | |
TeslaReportAlgo DEBUG Proto isPhoton = -1000 | |
TeslaReportAlgo DEBUG ProtoParticle details added | |
TeslaReportAlgo DEBUG Available information (muon) | |
TeslaReportAlgo DEBUG 0#Muon.MuonLLMu = -1.13227 | |
TeslaReportAlgo DEBUG 1#Muon.MuonLLBg = -4.29057 | |
TeslaReportAlgo DEBUG 2#Muon.NShared = 0 | |
TeslaReportAlgo DEBUG 3#Muon.Status = 31 | |
TeslaReportAlgo DEBUG 4#Muon.IsMuon = 1 | |
TeslaReportAlgo DEBUG 5#Muon.IsMuonLoose = 1 | |
TeslaReportAlgo DEBUG 6#Muon.IsMuonTight = 1 | |
TeslaReportAlgo DEBUG Muon LLMu = -1.13227 | |
TeslaReportAlgo DEBUG MuonPID details added | |
TeslaReportAlgo DEBUG Available information (track) | |
TeslaReportAlgo DEBUG 0#Track.firstState.z = 9450 | |
TeslaReportAlgo DEBUG 1#Track.firstState.x = -392.8 | |
TeslaReportAlgo DEBUG 10#Track.flags = 167 | |
TeslaReportAlgo DEBUG 11#Track.lastState.z = 9450 | |
TeslaReportAlgo DEBUG 12#Track.lastState.x = -392.8 | |
TeslaReportAlgo DEBUG 13#Track.lastState.y = -366.103 | |
TeslaReportAlgo DEBUG 14#Track.lastState.tx = 0.0175116 | |
TeslaReportAlgo DEBUG 15#Track.lastState.ty = -0.0384971 | |
TeslaReportAlgo DEBUG 16#Track.lastState.qOverP = -8.49541e-05 | |
TeslaReportAlgo DEBUG 2#Track.firstState.y = -366.103 | |
TeslaReportAlgo DEBUG 3#Track.firstState.tx = 0.0175116 | |
TeslaReportAlgo DEBUG 4#Track.firstState.ty = -0.0384971 | |
TeslaReportAlgo DEBUG 5#Track.firstState.qOverP = -8.49541e-05 | |
TeslaReportAlgo DEBUG 6#Track.chi2PerDoF = 0 | |
TeslaReportAlgo DEBUG 7#Track.nDoF = 0 | |
TeslaReportAlgo DEBUG 8#Track.Likelihood = 999 | |
TeslaReportAlgo DEBUG 9#Track.GhostProb = 999 | |
TeslaReportAlgo DEBUG Track #chi^{2}/DoF = 0 | |
TeslaReportAlgo DEBUG Track extra for Rep v2, adding last state | |
TeslaReportAlgo DEBUG Track details added | |
TeslaReportAlgo DEBUG Starting to tie pieces together | |
TeslaReportAlgo DEBUG Pieces tied together | |
TeslaReportAlgo DEBUG Daughter level 1 CLASS ID = 802 | |
TeslaReportAlgo DEBUG Available information (vertex) | |
TeslaReportAlgo DEBUG 0#Vertex.chi2 = 0.174252 | |
TeslaReportAlgo DEBUG 1#Vertex.ndf = 1 | |
TeslaReportAlgo DEBUG 10#Vertex.cov20 = -0.00178599 | |
TeslaReportAlgo DEBUG 11#Vertex.cov21 = 0.00207399 | |
TeslaReportAlgo DEBUG 2#Vertex.position.x = 0.0253662 | |
TeslaReportAlgo DEBUG 3#Vertex.position.y = -0.00996555 | |
TeslaReportAlgo DEBUG 4#Vertex.position.z = 37.1964 | |
TeslaReportAlgo DEBUG 5#Vertex.technique = 0 | |
TeslaReportAlgo DEBUG 6#Vertex.cov00 = 0.000221598 | |
TeslaReportAlgo DEBUG 7#Vertex.cov11 = 0.000240231 | |
TeslaReportAlgo DEBUG 8#Vertex.cov22 = 0.0243167 | |
TeslaReportAlgo DEBUG 9#Vertex.cov10 = -0.000135325 | |
TeslaReportAlgo DEBUG Decay vertex chi2 = 0.174252 | |
TeslaReportAlgo DEBUG Setting mother decay vertex | |
TeslaReportAlgo DEBUG End of algorithm execution | |
TeslaReportAlgo DEBUG ==> Execute | |
TeslaReportAlgo... DEBUG SelReports version check requested | |
TeslaReportAlgo...WARNING Sel. reports do not exist!!! | |
TeslaReportAlgo DEBUG VersionNum = 0 | |
TeslaReportAlgo WARNING Requested version number does not equal checker response | |
TeslaReportAlgo DEBUG versionNum = 0, m_ReportVersion = 2 | |
TeslaReportAlgo WARNING For your own safety, I will give you less information than requested, please check report generation | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Particle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Particles' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::ProtoParticle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Protos' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Vertex,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Vertices' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Track,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Tracks' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::RichPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/RichPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::MuonPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/MuonPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::VertexBase,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Rec/Vertex/Primary' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'LHCb::Relation1D<LHCb::Particle,LHCb::VertexBase>' is registered in TS at address 'Tesla/Particle2VertexRelations' | |
TeslaReportAlgo DEBUG The object of type 'LHCb::HltVertexReports*' has been retrieved from TS at address 'Hlt1/VertexReports' | |
TeslaReportAlgo DEBUG Available vertex reports: | |
TeslaReportAlgo DEBUG PV3D | |
TeslaReportAlgo DEBUG ProtoPV3D | |
TeslaReportAlgo DEBUG Vertex chi2= 87.3951, ndf =127 | |
TeslaReportAlgo DEBUG Vertex key= 0 | |
TeslaReportAlgo DEBUG Vertex chi2= 69.3177, ndf =129 | |
TeslaReportAlgo DEBUG Vertex key= 1 | |
TeslaReportAlgo WARNING Sel. reports do not exist!!! | |
TeslaReportAlgo DEBUG ==> Execute | |
TeslaReportAlgo... DEBUG SelReports version check requested | |
TeslaReportAlgo... DEBUG The object of type 'LHCb::HltSelReports*' has been retrieved from TS at address 'Hlt2/SelReports' | |
TeslaReportAlgo... DEBUG Examining mother report | |
TeslaReportAlgo... DEBUG Mother report is of a particle | |
TeslaReportAlgo... DEBUG ReportCheckTool finds verision 2 | |
TeslaReportAlgo DEBUG VersionNum = 2 | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Particle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Particles' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::ProtoParticle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Protos' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Vertex,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Vertices' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Track,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Tracks' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::RichPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/RichPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::MuonPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/MuonPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::VertexBase,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Rec/Vertex/Primary' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'LHCb::Relation1D<LHCb::Particle,LHCb::VertexBase>' is registered in TS at address 'Tesla/Particle2VertexRelations' | |
TeslaReportAlgo DEBUG The object of type 'LHCb::HltVertexReports*' has been retrieved from TS at address 'Hlt1/VertexReports' | |
TeslaReportAlgo DEBUG Available vertex reports: | |
TeslaReportAlgo DEBUG PV3D | |
TeslaReportAlgo DEBUG ProtoPV3D | |
TeslaReportAlgo DEBUG Vertex chi2= 20.7516, ndf =45 | |
TeslaReportAlgo DEBUG Vertex key= 0 | |
TeslaReportAlgo DEBUG The object of type 'LHCb::HltSelReports*' has been retrieved from TS at address 'Hlt2/SelReports' | |
TeslaReportAlgo DEBUG Available reports: | |
TeslaReportAlgo DEBUG Hlt2DiMuonDecision | |
TeslaReportAlgo DEBUG Hlt2DiMuonJPsiDecision | |
TeslaReportAlgo DEBUG Hlt2Global | |
TeslaReportAlgo DEBUG Hlt2SingleMuonLowPTDecision | |
TeslaReportAlgo DEBUG Required line has been fired | |
TeslaReportAlgo DEBUG Reference: | |
TeslaReportAlgo DEBUG Particle class ID = 801 | |
TeslaReportAlgo DEBUG Track class ID = 10010 | |
TeslaReportAlgo DEBUG RecVertex class ID = 10030 | |
TeslaReportAlgo DEBUG Vertex class ID = 802 | |
TeslaReportAlgo DEBUG ProtoParticle class ID = 803 | |
TeslaReportAlgo DEBUG { summarizedObjectCLID : 1 numericalInfo : { 0#SelectionID:50201 , } substructure : { 14:801 , } lhcbIDs : { } } | |
TeslaReportAlgo DEBUG MOTHER CLASS ID = 1 | |
TeslaReportAlgo DEBUG LHCbIDs.size() = 0 | |
TeslaReportAlgo DEBUG Number of triggered candidates = 1 | |
TeslaReportAlgo DEBUG [0xb568f00] | |
TeslaReportAlgo DEBUG Starting loop over triggered candidates | |
TeslaReportAlgo DEBUG Mother object CLASS ID = 801 | |
TeslaReportAlgo DEBUG Found mother with ID: 443 | |
TeslaReportAlgo DEBUG Mother has substructure consisting of: | |
TeslaReportAlgo DEBUG 801 | |
TeslaReportAlgo DEBUG 801 | |
TeslaReportAlgo DEBUG 802 | |
TeslaReportAlgo DEBUG Available information | |
TeslaReportAlgo DEBUG 0#Particle.particleID.pid = 443 | |
TeslaReportAlgo DEBUG 1#Particle.measuredMass = 3104.23 | |
TeslaReportAlgo DEBUG 10#Particle.momCov00 = 48.5426 | |
TeslaReportAlgo DEBUG 11#Particle.momCov11 = 75.3352 | |
TeslaReportAlgo DEBUG 12#Particle.momCov22 = 10138.3 | |
TeslaReportAlgo DEBUG 13#Particle.momCov33 = 10227.1 | |
TeslaReportAlgo DEBUG 14#Particle.momCov10 = 39.1669 | |
TeslaReportAlgo DEBUG 15#Particle.momCov20 = 122.651 | |
TeslaReportAlgo DEBUG 16#Particle.momCov21 = 595.988 | |
TeslaReportAlgo DEBUG 17#Particle.momCov30 = 127.479 | |
TeslaReportAlgo DEBUG 18#Particle.momCov31 = 602.912 | |
TeslaReportAlgo DEBUG 19#Particle.momCov32 = 10182.3 | |
TeslaReportAlgo DEBUG 2#Particle.referencePoint.z = -13.5106 | |
TeslaReportAlgo DEBUG 20#Particle.posmomCov00 = -0.106701 | |
TeslaReportAlgo DEBUG 21#Particle.posmomCov11 = -0.124114 | |
TeslaReportAlgo DEBUG 22#Particle.posmomCov22 = -0.0204923 | |
TeslaReportAlgo DEBUG 23#Particle.posmomCov10 = -0.0656504 | |
TeslaReportAlgo DEBUG 24#Particle.posmomCov01 = -0.0930808 | |
TeslaReportAlgo DEBUG 25#Particle.posmomCov20 = -0.0114976 | |
TeslaReportAlgo DEBUG 26#Particle.posmomCov02 = -0.676948 | |
TeslaReportAlgo DEBUG 27#Particle.posmomCov21 = 0.00413772 | |
TeslaReportAlgo DEBUG 28#Particle.posmomCov12 = -0.666243 | |
TeslaReportAlgo DEBUG 29#Particle.posmomCov30 = -0.0127186 | |
TeslaReportAlgo DEBUG 3#Particle.referencePoint.x = -0.0221661 | |
TeslaReportAlgo DEBUG 30#Particle.posmomCov31 = 0.00228474 | |
TeslaReportAlgo DEBUG 31#Particle.posmomCov32 = -0.0186374 | |
TeslaReportAlgo DEBUG 32#Particle.posCov00 = 0.00082703 | |
TeslaReportAlgo DEBUG 33#Particle.posCov11 = 0.00144048 | |
TeslaReportAlgo DEBUG 34#Particle.posCov22 = 0.0593167 | |
TeslaReportAlgo DEBUG 35#Particle.posCov10 = 0.000936851 | |
TeslaReportAlgo DEBUG 36#Particle.posCov20 = 0.00646937 | |
TeslaReportAlgo DEBUG 37#Particle.posCov21 = 0.00896984 | |
TeslaReportAlgo DEBUG 4#Particle.referencePoint.y = -0.0507014 | |
TeslaReportAlgo DEBUG 5#Particle.slopes.x = 0.0310027 | |
TeslaReportAlgo DEBUG 6#Particle.slopes.y = 0.0767396 | |
TeslaReportAlgo DEBUG 7#Particle.1/p = 2.71823e-05 | |
TeslaReportAlgo DEBUG 8#Particle.conflevel = -1 | |
TeslaReportAlgo DEBUG 9#Particle.massErr = 9.01043 | |
TeslaReportAlgo DEBUG p = 36788.7 | |
TeslaReportAlgo DEBUG p (par_mom) = 36788.7 | |
TeslaReportAlgo DEBUG pT (par_mom) = 3034.46 | |
TeslaReportAlgo DEBUG Particle measured mass = 3104.23 | |
TeslaReportAlgo DEBUG Particle CL = -1 | |
TeslaReportAlgo DEBUG Daughter level 1 CLASS ID = 801 | |
TeslaReportAlgo DEBUG 1st Gen. Daughter ID: -13 | |
TeslaReportAlgo DEBUG Basic daughter level 1 has substructure consisting of: | |
TeslaReportAlgo DEBUG 10010 | |
TeslaReportAlgo DEBUG 803 | |
TeslaReportAlgo DEBUG 11050 | |
TeslaReportAlgo DEBUG 10010 | |
TeslaReportAlgo DEBUG Available information | |
TeslaReportAlgo DEBUG 0#Particle.particleID.pid = -13 | |
TeslaReportAlgo DEBUG 1#Particle.measuredMass = 105.658 | |
TeslaReportAlgo DEBUG 10#Particle.momCov00 = 32.7327 | |
TeslaReportAlgo DEBUG 11#Particle.momCov11 = 53.9773 | |
TeslaReportAlgo DEBUG 12#Particle.momCov22 = 2119.05 | |
TeslaReportAlgo DEBUG 13#Particle.momCov33 = 2197.08 | |
TeslaReportAlgo DEBUG 14#Particle.momCov10 = 36.8354 | |
TeslaReportAlgo DEBUG 15#Particle.momCov20 = 244.132 | |
TeslaReportAlgo DEBUG 16#Particle.momCov21 = 325.21 | |
TeslaReportAlgo DEBUG 17#Particle.momCov30 = 249.002 | |
TeslaReportAlgo DEBUG 18#Particle.momCov31 = 331.678 | |
TeslaReportAlgo DEBUG 19#Particle.momCov32 = 2157.65 | |
TeslaReportAlgo DEBUG 2#Particle.referencePoint.z = -13.2838 | |
TeslaReportAlgo DEBUG 20#Particle.posmomCov00 = -0.0221913 | |
TeslaReportAlgo DEBUG 21#Particle.posmomCov11 = -0.0155072 | |
TeslaReportAlgo DEBUG 22#Particle.posmomCov22 = 0 | |
TeslaReportAlgo DEBUG 23#Particle.posmomCov10 = 0.00336035 | |
TeslaReportAlgo DEBUG 24#Particle.posmomCov01 = 0.00590016 | |
TeslaReportAlgo DEBUG 25#Particle.posmomCov20 = -0.00936995 | |
TeslaReportAlgo DEBUG 26#Particle.posmomCov02 = 0 | |
TeslaReportAlgo DEBUG 27#Particle.posmomCov21 = 0.00746234 | |
TeslaReportAlgo DEBUG 28#Particle.posmomCov12 = 0 | |
TeslaReportAlgo DEBUG 29#Particle.posmomCov30 = -0.0111936 | |
TeslaReportAlgo DEBUG 3#Particle.referencePoint.x = 0.00499044 | |
TeslaReportAlgo DEBUG 30#Particle.posmomCov31 = 0.00564624 | |
TeslaReportAlgo DEBUG 31#Particle.posmomCov32 = 0 | |
TeslaReportAlgo DEBUG 32#Particle.posCov00 = 0.000130442 | |
TeslaReportAlgo DEBUG 33#Particle.posCov11 = 8.88501e-05 | |
TeslaReportAlgo DEBUG 34#Particle.posCov22 = 0 | |
TeslaReportAlgo DEBUG 35#Particle.posCov10 = -4.6463e-05 | |
TeslaReportAlgo DEBUG 36#Particle.posCov20 = 0 | |
TeslaReportAlgo DEBUG 37#Particle.posCov21 = 0 | |
TeslaReportAlgo DEBUG 4#Particle.referencePoint.y = -0.0166386 | |
TeslaReportAlgo DEBUG 5#Particle.slopes.x = 0.114754 | |
TeslaReportAlgo DEBUG 6#Particle.slopes.y = 0.154103 | |
TeslaReportAlgo DEBUG 7#Particle.1/p = 7.51197e-05 | |
TeslaReportAlgo DEBUG 8#Particle.conflevel = 0.250063 | |
TeslaReportAlgo DEBUG 9#Particle.massErr = 0 | |
TeslaReportAlgo DEBUG p = 13312.1 | |
TeslaReportAlgo DEBUG p (par_mom) = 13312.1 | |
TeslaReportAlgo DEBUG pT (par_mom) = 2511.79 | |
TeslaReportAlgo DEBUG Particle measured mass = 105.658 | |
TeslaReportAlgo DEBUG Particle CL = 0.250063 | |
TeslaReportAlgo DEBUG Available information (track) | |
TeslaReportAlgo DEBUG 0#Track.firstState.z = -13.2838 | |
TeslaReportAlgo DEBUG 1#Track.firstState.x = 0.00499044 | |
TeslaReportAlgo DEBUG 10#Track.flags = 2.19556e+06 | |
TeslaReportAlgo DEBUG 11#Track.lastState.z = 11900 | |
TeslaReportAlgo DEBUG 12#Track.lastState.x = 716.493 | |
TeslaReportAlgo DEBUG 13#Track.lastState.y = 1820.25 | |
TeslaReportAlgo DEBUG 14#Track.lastState.tx = 0.0164007 | |
TeslaReportAlgo DEBUG 15#Track.lastState.ty = 0.151737 | |
TeslaReportAlgo DEBUG 16#Track.lastState.qOverP = 7.54091e-05 | |
TeslaReportAlgo DEBUG 2#Track.firstState.y = -0.0166386 | |
TeslaReportAlgo DEBUG 3#Track.firstState.tx = 0.114754 | |
TeslaReportAlgo DEBUG 4#Track.firstState.ty = 0.154103 | |
TeslaReportAlgo DEBUG 5#Track.firstState.qOverP = 7.51197e-05 | |
TeslaReportAlgo DEBUG 6#Track.chi2PerDoF = 0.901362 | |
TeslaReportAlgo DEBUG 7#Track.nDoF = 32 | |
TeslaReportAlgo DEBUG 8#Track.Likelihood = 999 | |
TeslaReportAlgo DEBUG 9#Track.GhostProb = 999 | |
TeslaReportAlgo DEBUG MatchVeloMuon = 1 | |
TeslaReportAlgo DEBUG PatForwardTool/LooseForward = 1 | |
TeslaReportAlgo DEBUG Track #chi^{2}/DoF = 0.901362 | |
TeslaReportAlgo DEBUG Track extra for Rep v2, adding last state | |
TeslaReportAlgo DEBUG Track details added | |
TeslaReportAlgo DEBUG Available information (proto) | |
TeslaReportAlgo DEBUG 0#Proto.extraInfo.IsPhoton = -1000 | |
TeslaReportAlgo DEBUG Proto isPhoton = -1000 | |
TeslaReportAlgo DEBUG ProtoParticle details added | |
TeslaReportAlgo DEBUG Available information (muon) | |
TeslaReportAlgo DEBUG 0#Muon.MuonLLMu = -2.53137 | |
TeslaReportAlgo DEBUG 1#Muon.MuonLLBg = -5.41097 | |
TeslaReportAlgo DEBUG 2#Muon.NShared = 0 | |
TeslaReportAlgo DEBUG 3#Muon.Status = 31 | |
TeslaReportAlgo DEBUG 4#Muon.IsMuon = 1 | |
TeslaReportAlgo DEBUG 5#Muon.IsMuonLoose = 1 | |
TeslaReportAlgo DEBUG 6#Muon.IsMuonTight = 1 | |
TeslaReportAlgo DEBUG Muon LLMu = -2.53137 | |
TeslaReportAlgo DEBUG MuonPID details added | |
TeslaReportAlgo DEBUG Available information (track) | |
TeslaReportAlgo DEBUG 0#Track.firstState.z = 9450 | |
TeslaReportAlgo DEBUG 1#Track.firstState.x = 675.713 | |
TeslaReportAlgo DEBUG 10#Track.flags = 167 | |
TeslaReportAlgo DEBUG 11#Track.lastState.z = 9450 | |
TeslaReportAlgo DEBUG 12#Track.lastState.x = 675.713 | |
TeslaReportAlgo DEBUG 13#Track.lastState.y = 1448.35 | |
TeslaReportAlgo DEBUG 14#Track.lastState.tx = 0.0171813 | |
TeslaReportAlgo DEBUG 15#Track.lastState.ty = 0.151903 | |
TeslaReportAlgo DEBUG 16#Track.lastState.qOverP = 7.53448e-05 | |
TeslaReportAlgo DEBUG 2#Track.firstState.y = 1448.35 | |
TeslaReportAlgo DEBUG 3#Track.firstState.tx = 0.0171813 | |
TeslaReportAlgo DEBUG 4#Track.firstState.ty = 0.151903 | |
TeslaReportAlgo DEBUG 5#Track.firstState.qOverP = 7.53448e-05 | |
TeslaReportAlgo DEBUG 6#Track.chi2PerDoF = 0 | |
TeslaReportAlgo DEBUG 7#Track.nDoF = 0 | |
TeslaReportAlgo DEBUG 8#Track.Likelihood = 999 | |
TeslaReportAlgo DEBUG 9#Track.GhostProb = 999 | |
TeslaReportAlgo DEBUG Track #chi^{2}/DoF = 0 | |
TeslaReportAlgo DEBUG Track extra for Rep v2, adding last state | |
TeslaReportAlgo DEBUG Track details added | |
TeslaReportAlgo DEBUG Starting to tie pieces together | |
TeslaReportAlgo DEBUG Pieces tied together | |
TeslaReportAlgo DEBUG Daughter level 1 CLASS ID = 801 | |
TeslaReportAlgo DEBUG 1st Gen. Daughter ID: 13 | |
TeslaReportAlgo DEBUG Basic daughter level 1 has substructure consisting of: | |
TeslaReportAlgo DEBUG 10010 | |
TeslaReportAlgo DEBUG 803 | |
TeslaReportAlgo DEBUG 11050 | |
TeslaReportAlgo DEBUG 10010 | |
TeslaReportAlgo DEBUG Available information | |
TeslaReportAlgo DEBUG 0#Particle.particleID.pid = 13 | |
TeslaReportAlgo DEBUG 1#Particle.measuredMass = 105.658 | |
TeslaReportAlgo DEBUG 10#Particle.momCov00 = 21.6378 | |
TeslaReportAlgo DEBUG 11#Particle.momCov11 = 28.4382 | |
TeslaReportAlgo DEBUG 12#Particle.momCov22 = 8019.25 | |
TeslaReportAlgo DEBUG 13#Particle.momCov33 = 8030.12 | |
TeslaReportAlgo DEBUG 14#Particle.momCov10 = -4.09217 | |
TeslaReportAlgo DEBUG 15#Particle.momCov20 = -121.689 | |
TeslaReportAlgo DEBUG 16#Particle.momCov21 = 271.008 | |
TeslaReportAlgo DEBUG 17#Particle.momCov30 = -122.074 | |
TeslaReportAlgo DEBUG 18#Particle.momCov31 = 271.842 | |
TeslaReportAlgo DEBUG 19#Particle.momCov32 = 8024.67 | |
TeslaReportAlgo DEBUG 2#Particle.referencePoint.z = -12.8166 | |
TeslaReportAlgo DEBUG 20#Particle.posmomCov00 = -0.185173 | |
TeslaReportAlgo DEBUG 21#Particle.posmomCov11 = -0.178207 | |
TeslaReportAlgo DEBUG 22#Particle.posmomCov22 = 0 | |
TeslaReportAlgo DEBUG 23#Particle.posmomCov10 = -0.000219765 | |
TeslaReportAlgo DEBUG 24#Particle.posmomCov01 = -0.000148866 | |
TeslaReportAlgo DEBUG 25#Particle.posmomCov20 = -0.00931765 | |
TeslaReportAlgo DEBUG 26#Particle.posmomCov02 = 0 | |
TeslaReportAlgo DEBUG 27#Particle.posmomCov21 = 0.00232575 | |
TeslaReportAlgo DEBUG 28#Particle.posmomCov12 = 0 | |
TeslaReportAlgo DEBUG 29#Particle.posmomCov30 = -0.00647478 | |
TeslaReportAlgo DEBUG 3#Particle.referencePoint.x = -0.0443138 | |
TeslaReportAlgo DEBUG 30#Particle.posmomCov31 = -0.00369671 | |
TeslaReportAlgo DEBUG 31#Particle.posmomCov32 = 0 | |
TeslaReportAlgo DEBUG 32#Particle.posCov00 = 0.00183762 | |
TeslaReportAlgo DEBUG 33#Particle.posCov11 = 0.0017327 | |
TeslaReportAlgo DEBUG 34#Particle.posCov22 = 0 | |
TeslaReportAlgo DEBUG 35#Particle.posCov10 = 8.52494e-08 | |
TeslaReportAlgo DEBUG 36#Particle.posCov20 = 0 | |
TeslaReportAlgo DEBUG 37#Particle.posCov21 = 0 | |
TeslaReportAlgo DEBUG 4#Particle.referencePoint.y = -0.0155142 | |
TeslaReportAlgo DEBUG 5#Particle.slopes.x = -0.0153682 | |
TeslaReportAlgo DEBUG 6#Particle.slopes.y = 0.033822 | |
TeslaReportAlgo DEBUG 7#Particle.1/p = 4.23611e-05 | |
TeslaReportAlgo DEBUG 8#Particle.conflevel = 0.250063 | |
TeslaReportAlgo DEBUG 9#Particle.massErr = 0 | |
TeslaReportAlgo DEBUG p = 23606.6 | |
TeslaReportAlgo DEBUG p (par_mom) = 23606.6 | |
TeslaReportAlgo DEBUG pT (par_mom) = 876.376 | |
TeslaReportAlgo DEBUG Particle measured mass = 105.658 | |
TeslaReportAlgo DEBUG Particle CL = 0.250063 | |
TeslaReportAlgo DEBUG Available information (track) | |
TeslaReportAlgo DEBUG 0#Track.firstState.z = -12.8166 | |
TeslaReportAlgo DEBUG 1#Track.firstState.x = -0.0443138 | |
TeslaReportAlgo DEBUG 10#Track.flags = 2.19556e+06 | |
TeslaReportAlgo DEBUG 11#Track.lastState.z = 11900 | |
TeslaReportAlgo DEBUG 12#Track.lastState.x = 160.066 | |
TeslaReportAlgo DEBUG 13#Track.lastState.y = 402.86 | |
TeslaReportAlgo DEBUG 14#Track.lastState.tx = 0.0376063 | |
TeslaReportAlgo DEBUG 15#Track.lastState.ty = 0.0338194 | |
TeslaReportAlgo DEBUG 16#Track.lastState.qOverP = -4.24622e-05 | |
TeslaReportAlgo DEBUG 2#Track.firstState.y = -0.0155142 | |
TeslaReportAlgo DEBUG 3#Track.firstState.tx = -0.0153682 | |
TeslaReportAlgo DEBUG 4#Track.firstState.ty = 0.033822 | |
TeslaReportAlgo DEBUG 5#Track.firstState.qOverP = -4.23611e-05 | |
TeslaReportAlgo DEBUG 6#Track.chi2PerDoF = 1.17174 | |
TeslaReportAlgo DEBUG 7#Track.nDoF = 38 | |
TeslaReportAlgo DEBUG 8#Track.Likelihood = 999 | |
TeslaReportAlgo DEBUG 9#Track.GhostProb = 999 | |
TeslaReportAlgo DEBUG FastTTValidationTool/ValidateWithTT = 1 | |
TeslaReportAlgo DEBUG MatchVeloMuon = 1 | |
TeslaReportAlgo DEBUG PatForwardTool/LooseForward = 1 | |
TeslaReportAlgo DEBUG PatForwardTool/TightForward = 0 | |
TeslaReportAlgo DEBUG Track #chi^{2}/DoF = 1.17174 | |
TeslaReportAlgo DEBUG Track extra for Rep v2, adding last state | |
TeslaReportAlgo DEBUG Track details added | |
TeslaReportAlgo DEBUG Available information (proto) | |
TeslaReportAlgo DEBUG 0#Proto.extraInfo.IsPhoton = -1000 | |
TeslaReportAlgo DEBUG Proto isPhoton = -1000 | |
TeslaReportAlgo DEBUG ProtoParticle details added | |
TeslaReportAlgo DEBUG Available information (muon) | |
TeslaReportAlgo DEBUG 0#Muon.MuonLLMu = -0.166763 | |
TeslaReportAlgo DEBUG 1#Muon.MuonLLBg = -3.36058 | |
TeslaReportAlgo DEBUG 2#Muon.NShared = 0 | |
TeslaReportAlgo DEBUG 3#Muon.Status = 31 | |
TeslaReportAlgo DEBUG 4#Muon.IsMuon = 1 | |
TeslaReportAlgo DEBUG 5#Muon.IsMuonLoose = 1 | |
TeslaReportAlgo DEBUG 6#Muon.IsMuonTight = 1 | |
TeslaReportAlgo DEBUG Muon LLMu = -0.166763 | |
TeslaReportAlgo DEBUG MuonPID details added | |
TeslaReportAlgo DEBUG Available information (track) | |
TeslaReportAlgo DEBUG 0#Track.firstState.z = 9450 | |
TeslaReportAlgo DEBUG 1#Track.firstState.x = 68.6416 | |
TeslaReportAlgo DEBUG 10#Track.flags = 167 | |
TeslaReportAlgo DEBUG 11#Track.lastState.z = 9450 | |
TeslaReportAlgo DEBUG 12#Track.lastState.x = 68.6416 | |
TeslaReportAlgo DEBUG 13#Track.lastState.y = 320.004 | |
TeslaReportAlgo DEBUG 14#Track.lastState.tx = 0.0367096 | |
TeslaReportAlgo DEBUG 15#Track.lastState.ty = 0.0338176 | |
TeslaReportAlgo DEBUG 16#Track.lastState.qOverP = -4.24414e-05 | |
TeslaReportAlgo DEBUG 2#Track.firstState.y = 320.004 | |
TeslaReportAlgo DEBUG 3#Track.firstState.tx = 0.0367096 | |
TeslaReportAlgo DEBUG 4#Track.firstState.ty = 0.0338176 | |
TeslaReportAlgo DEBUG 5#Track.firstState.qOverP = -4.24414e-05 | |
TeslaReportAlgo DEBUG 6#Track.chi2PerDoF = 0 | |
TeslaReportAlgo DEBUG 7#Track.nDoF = 0 | |
TeslaReportAlgo DEBUG 8#Track.Likelihood = 999 | |
TeslaReportAlgo DEBUG 9#Track.GhostProb = 999 | |
TeslaReportAlgo DEBUG Track #chi^{2}/DoF = 0 | |
TeslaReportAlgo DEBUG Track extra for Rep v2, adding last state | |
TeslaReportAlgo DEBUG Track details added | |
TeslaReportAlgo DEBUG Starting to tie pieces together | |
TeslaReportAlgo DEBUG Pieces tied together | |
TeslaReportAlgo DEBUG Daughter level 1 CLASS ID = 802 | |
TeslaReportAlgo DEBUG Available information (vertex) | |
TeslaReportAlgo DEBUG 0#Vertex.chi2 = 0.163018 | |
TeslaReportAlgo DEBUG 1#Vertex.ndf = 1 | |
TeslaReportAlgo DEBUG 10#Vertex.cov20 = 0.00646937 | |
TeslaReportAlgo DEBUG 11#Vertex.cov21 = 0.00896984 | |
TeslaReportAlgo DEBUG 2#Vertex.position.x = -0.0221661 | |
TeslaReportAlgo DEBUG 3#Vertex.position.y = -0.0507014 | |
TeslaReportAlgo DEBUG 4#Vertex.position.z = -13.5106 | |
TeslaReportAlgo DEBUG 5#Vertex.technique = 0 | |
TeslaReportAlgo DEBUG 6#Vertex.cov00 = 0.00082703 | |
TeslaReportAlgo DEBUG 7#Vertex.cov11 = 0.00144048 | |
TeslaReportAlgo DEBUG 8#Vertex.cov22 = 0.0593167 | |
TeslaReportAlgo DEBUG 9#Vertex.cov10 = 0.000936851 | |
TeslaReportAlgo DEBUG Decay vertex chi2 = 0.163018 | |
TeslaReportAlgo DEBUG Setting mother decay vertex | |
TeslaReportAlgo DEBUG End of algorithm execution | |
TeslaReportAlgo DEBUG ==> Execute | |
TeslaReportAlgo... DEBUG SelReports version check requested | |
TeslaReportAlgo...WARNING Sel. reports do not exist!!! | |
TeslaReportAlgo DEBUG VersionNum = 0 | |
TeslaReportAlgo WARNING Requested version number does not equal checker response | |
TeslaReportAlgo DEBUG versionNum = 0, m_ReportVersion = 2 | |
TeslaReportAlgo WARNING For your own safety, I will give you less information than requested, please check report generation | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Particle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Particles' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::ProtoParticle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Protos' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Vertex,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Vertices' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Track,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Tracks' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::RichPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/RichPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::MuonPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/MuonPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::VertexBase,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Rec/Vertex/Primary' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'LHCb::Relation1D<LHCb::Particle,LHCb::VertexBase>' is registered in TS at address 'Tesla/Particle2VertexRelations' | |
Hlt1VertexRepor...WARNING HltVertexReportsDecoder:: No HltVertexReports RawBank for requested SourceID in RawEvent. Quiting. | |
TeslaReportAlgo DEBUG The object of type 'LHCb::HltVertexReports*' has been retrieved from TS at address 'Hlt1/VertexReports' | |
TeslaReportAlgo DEBUG Available vertex reports: | |
TeslaReportAlgo WARNING Sel. reports do not exist!!! | |
TeslaReportAlgo DEBUG ==> Execute | |
TeslaReportAlgo... DEBUG SelReports version check requested | |
TeslaReportAlgo... DEBUG The object of type 'LHCb::HltSelReports*' has been retrieved from TS at address 'Hlt2/SelReports' | |
TeslaReportAlgo DEBUG VersionNum = 99 | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Particle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Particles' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::ProtoParticle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Protos' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Vertex,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Vertices' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Track,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Tracks' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::RichPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/RichPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::MuonPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/MuonPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::VertexBase,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Rec/Vertex/Primary' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'LHCb::Relation1D<LHCb::Particle,LHCb::VertexBase>' is registered in TS at address 'Tesla/Particle2VertexRelations' | |
TeslaReportAlgo DEBUG The object of type 'LHCb::HltVertexReports*' has been retrieved from TS at address 'Hlt1/VertexReports' | |
TeslaReportAlgo DEBUG Available vertex reports: | |
TeslaReportAlgo DEBUG PV3D | |
TeslaReportAlgo DEBUG ProtoPV3D | |
TeslaReportAlgo DEBUG Vertex chi2= 78.6809, ndf =121 | |
TeslaReportAlgo DEBUG Vertex key= 0 | |
TeslaReportAlgo DEBUG The object of type 'LHCb::HltSelReports*' has been retrieved from TS at address 'Hlt2/SelReports' | |
TeslaReportAlgo DEBUG Available reports: | |
TeslaReportAlgo DEBUG Hlt2Global | |
TeslaReportAlgo DEBUG Hlt2SingleMuonLowPTDecision | |
TeslaReportAlgo DEBUG End of algorithm execution | |
EventSelector SUCCESS Reading Event record 41. Record number within stream 1: 41 | |
TeslaReportAlgo DEBUG ==> Execute | |
TeslaReportAlgo... DEBUG SelReports version check requested | |
TeslaReportAlgo... DEBUG The object of type 'LHCb::HltSelReports*' has been retrieved from TS at address 'Hlt2/SelReports' | |
TeslaReportAlgo DEBUG VersionNum = 99 | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Particle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Particles' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::ProtoParticle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Protos' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Vertex,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Vertices' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Track,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Tracks' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::RichPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/RichPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::MuonPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/MuonPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::VertexBase,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Rec/Vertex/Primary' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'LHCb::Relation1D<LHCb::Particle,LHCb::VertexBase>' is registered in TS at address 'Tesla/Particle2VertexRelations' | |
TeslaReportAlgo DEBUG The object of type 'LHCb::HltVertexReports*' has been retrieved from TS at address 'Hlt1/VertexReports' | |
TeslaReportAlgo DEBUG Available vertex reports: | |
TeslaReportAlgo DEBUG PV3D | |
TeslaReportAlgo DEBUG ProtoPV3D | |
TeslaReportAlgo DEBUG Vertex chi2= 9.67107, ndf =23 | |
TeslaReportAlgo DEBUG Vertex key= 0 | |
TeslaReportAlgo DEBUG Vertex chi2= 18.8051, ndf =23 | |
TeslaReportAlgo DEBUG Vertex key= 1 | |
TeslaReportAlgo DEBUG The object of type 'LHCb::HltSelReports*' has been retrieved from TS at address 'Hlt2/SelReports' | |
TeslaReportAlgo DEBUG Available reports: | |
TeslaReportAlgo DEBUG Hlt2Global | |
TeslaReportAlgo DEBUG Hlt2SingleMuonLowPTDecision | |
TeslaReportAlgo DEBUG End of algorithm execution | |
TeslaReportAlgo DEBUG ==> Execute | |
TeslaReportAlgo... DEBUG SelReports version check requested | |
TeslaReportAlgo... DEBUG The object of type 'LHCb::HltSelReports*' has been retrieved from TS at address 'Hlt2/SelReports' | |
TeslaReportAlgo... DEBUG Examining mother report | |
TeslaReportAlgo... DEBUG Mother report is of a particle | |
TeslaReportAlgo... DEBUG ReportCheckTool finds verision 2 | |
TeslaReportAlgo DEBUG VersionNum = 2 | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Particle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Particles' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::ProtoParticle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Protos' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Vertex,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Vertices' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Track,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Tracks' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::RichPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/RichPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::MuonPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/MuonPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::VertexBase,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Rec/Vertex/Primary' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'LHCb::Relation1D<LHCb::Particle,LHCb::VertexBase>' is registered in TS at address 'Tesla/Particle2VertexRelations' | |
TeslaReportAlgo DEBUG The object of type 'LHCb::HltVertexReports*' has been retrieved from TS at address 'Hlt1/VertexReports' | |
TeslaReportAlgo DEBUG Available vertex reports: | |
TeslaReportAlgo DEBUG PV3D | |
TeslaReportAlgo DEBUG ProtoPV3D | |
TeslaReportAlgo DEBUG Vertex chi2= 35.666, ndf =55 | |
TeslaReportAlgo DEBUG Vertex key= 0 | |
TeslaReportAlgo DEBUG The object of type 'LHCb::HltSelReports*' has been retrieved from TS at address 'Hlt2/SelReports' | |
TeslaReportAlgo DEBUG Available reports: | |
TeslaReportAlgo DEBUG Hlt2DiMuonDecision | |
TeslaReportAlgo DEBUG Hlt2DiMuonJPsiDecision | |
TeslaReportAlgo DEBUG Hlt2Global | |
TeslaReportAlgo DEBUG Hlt2SingleMuonLowPTDecision | |
TeslaReportAlgo DEBUG Required line has been fired | |
TeslaReportAlgo DEBUG Reference: | |
TeslaReportAlgo DEBUG Particle class ID = 801 | |
TeslaReportAlgo DEBUG Track class ID = 10010 | |
TeslaReportAlgo DEBUG RecVertex class ID = 10030 | |
TeslaReportAlgo DEBUG Vertex class ID = 802 | |
TeslaReportAlgo DEBUG ProtoParticle class ID = 803 | |
TeslaReportAlgo DEBUG { summarizedObjectCLID : 1 numericalInfo : { 0#SelectionID:50201 , } substructure : { 14:801 , } lhcbIDs : { } } | |
TeslaReportAlgo DEBUG MOTHER CLASS ID = 1 | |
TeslaReportAlgo DEBUG LHCbIDs.size() = 0 | |
TeslaReportAlgo DEBUG Number of triggered candidates = 1 | |
TeslaReportAlgo DEBUG [0xb568c00] | |
TeslaReportAlgo DEBUG Starting loop over triggered candidates | |
TeslaReportAlgo DEBUG Mother object CLASS ID = 801 | |
TeslaReportAlgo DEBUG Found mother with ID: 443 | |
TeslaReportAlgo DEBUG Mother has substructure consisting of: | |
TeslaReportAlgo DEBUG 801 | |
TeslaReportAlgo DEBUG 801 | |
TeslaReportAlgo DEBUG 802 | |
TeslaReportAlgo DEBUG Available information | |
TeslaReportAlgo DEBUG 0#Particle.particleID.pid = 443 | |
TeslaReportAlgo DEBUG 1#Particle.measuredMass = 3094.5 | |
TeslaReportAlgo DEBUG 10#Particle.momCov00 = 67.5656 | |
TeslaReportAlgo DEBUG 11#Particle.momCov11 = 23.8214 | |
TeslaReportAlgo DEBUG 12#Particle.momCov22 = 4018.53 | |
TeslaReportAlgo DEBUG 13#Particle.momCov33 = 4085.38 | |
TeslaReportAlgo DEBUG 14#Particle.momCov10 = 25.4551 | |
TeslaReportAlgo DEBUG 15#Particle.momCov20 = -161.866 | |
TeslaReportAlgo DEBUG 16#Particle.momCov21 = -85.3064 | |
TeslaReportAlgo DEBUG 17#Particle.momCov30 = -167.83 | |
TeslaReportAlgo DEBUG 18#Particle.momCov31 = -88.1225 | |
TeslaReportAlgo DEBUG 19#Particle.momCov32 = 4051.55 | |
TeslaReportAlgo DEBUG 2#Particle.referencePoint.z = 20.3083 | |
TeslaReportAlgo DEBUG 20#Particle.posmomCov00 = -0.0857768 | |
TeslaReportAlgo DEBUG 21#Particle.posmomCov11 = -0.0610026 | |
TeslaReportAlgo DEBUG 22#Particle.posmomCov22 = -0.0318873 | |
TeslaReportAlgo DEBUG 23#Particle.posmomCov10 = -0.0126121 | |
TeslaReportAlgo DEBUG 24#Particle.posmomCov01 = -0.0129819 | |
TeslaReportAlgo DEBUG 25#Particle.posmomCov20 = -0.0015244 | |
TeslaReportAlgo DEBUG 26#Particle.posmomCov02 = 0.316873 | |
TeslaReportAlgo DEBUG 27#Particle.posmomCov21 = -0.00177346 | |
TeslaReportAlgo DEBUG 28#Particle.posmomCov12 = 0.145789 | |
TeslaReportAlgo DEBUG 29#Particle.posmomCov30 = -0.00443838 | |
TeslaReportAlgo DEBUG 3#Particle.referencePoint.x = -0.0525168 | |
TeslaReportAlgo DEBUG 30#Particle.posmomCov31 = -0.00318967 | |
TeslaReportAlgo DEBUG 31#Particle.posmomCov32 = 0.00306775 | |
TeslaReportAlgo DEBUG 32#Particle.posCov00 = 0.000861081 | |
TeslaReportAlgo DEBUG 33#Particle.posCov11 = 0.000413868 | |
TeslaReportAlgo DEBUG 34#Particle.posCov22 = 0.0247069 | |
TeslaReportAlgo DEBUG 35#Particle.posCov10 = 0.000256385 | |
TeslaReportAlgo DEBUG 36#Particle.posCov20 = -0.00416832 | |
TeslaReportAlgo DEBUG 37#Particle.posCov21 = -0.00195227 | |
TeslaReportAlgo DEBUG 4#Particle.referencePoint.y = -0.00537085 | |
TeslaReportAlgo DEBUG 5#Particle.slopes.x = -0.0580499 | |
TeslaReportAlgo DEBUG 6#Particle.slopes.y = -0.0294042 | |
TeslaReportAlgo DEBUG 7#Particle.1/p = 4.0335e-05 | |
TeslaReportAlgo DEBUG 8#Particle.conflevel = -1 | |
TeslaReportAlgo DEBUG 9#Particle.massErr = 8.48074 | |
TeslaReportAlgo DEBUG p = 24792.4 | |
TeslaReportAlgo DEBUG p (par_mom) = 24792.4 | |
TeslaReportAlgo DEBUG pT (par_mom) = 1609.89 | |
TeslaReportAlgo DEBUG Particle measured mass = 3094.5 | |
TeslaReportAlgo DEBUG Particle CL = -1 | |
TeslaReportAlgo DEBUG Daughter level 1 CLASS ID = 801 | |
TeslaReportAlgo DEBUG 1st Gen. Daughter ID: -13 | |
TeslaReportAlgo DEBUG Basic daughter level 1 has substructure consisting of: | |
TeslaReportAlgo DEBUG 10010 | |
TeslaReportAlgo DEBUG 803 | |
TeslaReportAlgo DEBUG 11050 | |
TeslaReportAlgo DEBUG 10010 | |
TeslaReportAlgo DEBUG Available information | |
TeslaReportAlgo DEBUG 0#Particle.particleID.pid = -13 | |
TeslaReportAlgo DEBUG 1#Particle.measuredMass = 105.658 | |
TeslaReportAlgo DEBUG 10#Particle.momCov00 = 54.9139 | |
TeslaReportAlgo DEBUG 11#Particle.momCov11 = 16.7389 | |
TeslaReportAlgo DEBUG 12#Particle.momCov22 = 1447.91 | |
TeslaReportAlgo DEBUG 13#Particle.momCov33 = 1509.63 | |
TeslaReportAlgo DEBUG 14#Particle.momCov10 = 22.9031 | |
TeslaReportAlgo DEBUG 15#Particle.momCov20 = -270.551 | |
TeslaReportAlgo DEBUG 16#Particle.momCov21 = -126.978 | |
TeslaReportAlgo DEBUG 17#Particle.momCov30 = -276.971 | |
TeslaReportAlgo DEBUG 18#Particle.momCov31 = -129.981 | |
TeslaReportAlgo DEBUG 19#Particle.momCov32 = 1478.37 | |
TeslaReportAlgo DEBUG 2#Particle.referencePoint.z = 20.1498 | |
TeslaReportAlgo DEBUG 20#Particle.posmomCov00 = -0.0237901 | |
TeslaReportAlgo DEBUG 21#Particle.posmomCov11 = -0.0375797 | |
TeslaReportAlgo DEBUG 22#Particle.posmomCov22 = 0 | |
TeslaReportAlgo DEBUG 23#Particle.posmomCov10 = 0.00949757 | |
TeslaReportAlgo DEBUG 24#Particle.posmomCov01 = 0.00967786 | |
TeslaReportAlgo DEBUG 25#Particle.posmomCov20 = -0.00731065 | |
TeslaReportAlgo DEBUG 26#Particle.posmomCov02 = 0 | |
TeslaReportAlgo DEBUG 27#Particle.posmomCov21 = -0.00502193 | |
TeslaReportAlgo DEBUG 28#Particle.posmomCov12 = 0 | |
TeslaReportAlgo DEBUG 29#Particle.posmomCov30 = -0.00360845 | |
TeslaReportAlgo DEBUG 3#Particle.referencePoint.x = -0.0261842 | |
TeslaReportAlgo DEBUG 30#Particle.posmomCov31 = -0.00345085 | |
TeslaReportAlgo DEBUG 31#Particle.posmomCov32 = 0 | |
TeslaReportAlgo DEBUG 32#Particle.posCov00 = 0.000181879 | |
TeslaReportAlgo DEBUG 33#Particle.posCov11 = 0.00032244 | |
TeslaReportAlgo DEBUG 34#Particle.posCov22 = 0 | |
TeslaReportAlgo DEBUG 35#Particle.posCov10 = -9.83875e-05 | |
TeslaReportAlgo DEBUG 36#Particle.posCov20 = 0 | |
TeslaReportAlgo DEBUG 37#Particle.posCov21 = 0 | |
TeslaReportAlgo DEBUG 4#Particle.referencePoint.y = 0.0154929 | |
TeslaReportAlgo DEBUG 5#Particle.slopes.x = -0.187584 | |
TeslaReportAlgo DEBUG 6#Particle.slopes.y = -0.0881588 | |
TeslaReportAlgo DEBUG 7#Particle.1/p = 9.06709e-05 | |
TeslaReportAlgo DEBUG 8#Particle.conflevel = 0.250063 | |
TeslaReportAlgo DEBUG 9#Particle.massErr = 0 | |
TeslaReportAlgo DEBUG p = 11028.9 | |
TeslaReportAlgo DEBUG p (par_mom) = 11028.9 | |
TeslaReportAlgo DEBUG pT (par_mom) = 2238.35 | |
TeslaReportAlgo DEBUG Particle measured mass = 105.658 | |
TeslaReportAlgo DEBUG Particle CL = 0.250063 | |
TeslaReportAlgo DEBUG Available information (track) | |
TeslaReportAlgo DEBUG 0#Track.firstState.z = 20.1498 | |
TeslaReportAlgo DEBUG 1#Track.firstState.x = -0.0261842 | |
TeslaReportAlgo DEBUG 10#Track.flags = 2.19556e+06 | |
TeslaReportAlgo DEBUG 11#Track.lastState.z = 11900 | |
TeslaReportAlgo DEBUG 12#Track.lastState.x = -3057.14 | |
TeslaReportAlgo DEBUG 13#Track.lastState.y = -1072.77 | |
TeslaReportAlgo DEBUG 14#Track.lastState.tx = -0.312766 | |
TeslaReportAlgo DEBUG 15#Track.lastState.ty = -0.0911864 | |
TeslaReportAlgo DEBUG 16#Track.lastState.qOverP = 9.11083e-05 | |
TeslaReportAlgo DEBUG 2#Track.firstState.y = 0.0154929 | |
TeslaReportAlgo DEBUG 3#Track.firstState.tx = -0.187584 | |
TeslaReportAlgo DEBUG 4#Track.firstState.ty = -0.0881588 | |
TeslaReportAlgo DEBUG 5#Track.firstState.qOverP = 9.06709e-05 | |
TeslaReportAlgo DEBUG 6#Track.chi2PerDoF = 1.09556 | |
TeslaReportAlgo DEBUG 7#Track.nDoF = 29 | |
TeslaReportAlgo DEBUG 8#Track.Likelihood = 999 | |
TeslaReportAlgo DEBUG 9#Track.GhostProb = 999 | |
TeslaReportAlgo DEBUG MatchVeloMuon = 1 | |
TeslaReportAlgo DEBUG PatForwardTool/LooseForward = 1 | |
TeslaReportAlgo DEBUG Track #chi^{2}/DoF = 1.09556 | |
TeslaReportAlgo DEBUG Track extra for Rep v2, adding last state | |
TeslaReportAlgo DEBUG Track details added | |
TeslaReportAlgo DEBUG Available information (proto) | |
TeslaReportAlgo DEBUG 0#Proto.extraInfo.IsPhoton = -1000 | |
TeslaReportAlgo DEBUG Proto isPhoton = -1000 | |
TeslaReportAlgo DEBUG ProtoParticle details added | |
TeslaReportAlgo DEBUG Available information (muon) | |
TeslaReportAlgo DEBUG 0#Muon.MuonLLMu = -3.90405 | |
TeslaReportAlgo DEBUG 1#Muon.MuonLLBg = -6.25308 | |
TeslaReportAlgo DEBUG 2#Muon.NShared = 0 | |
TeslaReportAlgo DEBUG 3#Muon.Status = 31 | |
TeslaReportAlgo DEBUG 4#Muon.IsMuon = 1 | |
TeslaReportAlgo DEBUG 5#Muon.IsMuonLoose = 1 | |
TeslaReportAlgo DEBUG 6#Muon.IsMuonTight = 1 | |
TeslaReportAlgo DEBUG Muon LLMu = -3.90405 | |
TeslaReportAlgo DEBUG MuonPID details added | |
TeslaReportAlgo DEBUG Available information (track) | |
TeslaReportAlgo DEBUG 0#Track.firstState.z = 9450 | |
TeslaReportAlgo DEBUG 1#Track.firstState.x = -2291.69 | |
TeslaReportAlgo DEBUG 10#Track.flags = 167 | |
TeslaReportAlgo DEBUG 11#Track.lastState.z = 9450 | |
TeslaReportAlgo DEBUG 12#Track.lastState.x = -2291.69 | |
TeslaReportAlgo DEBUG 13#Track.lastState.y = -849.58 | |
TeslaReportAlgo DEBUG 14#Track.lastState.tx = -0.311624 | |
TeslaReportAlgo DEBUG 15#Track.lastState.ty = -0.0909599 | |
TeslaReportAlgo DEBUG 16#Track.lastState.qOverP = 9.10079e-05 | |
TeslaReportAlgo DEBUG 2#Track.firstState.y = -849.58 | |
TeslaReportAlgo DEBUG 3#Track.firstState.tx = -0.311624 | |
TeslaReportAlgo DEBUG 4#Track.firstState.ty = -0.0909599 | |
TeslaReportAlgo DEBUG 5#Track.firstState.qOverP = 9.10079e-05 | |
TeslaReportAlgo DEBUG 6#Track.chi2PerDoF = 0 | |
TeslaReportAlgo DEBUG 7#Track.nDoF = 0 | |
TeslaReportAlgo DEBUG 8#Track.Likelihood = 999 | |
TeslaReportAlgo DEBUG 9#Track.GhostProb = 999 | |
TeslaReportAlgo DEBUG Track #chi^{2}/DoF = 0 | |
TeslaReportAlgo DEBUG Track extra for Rep v2, adding last state | |
TeslaReportAlgo DEBUG Track details added | |
TeslaReportAlgo DEBUG Starting to tie pieces together | |
TeslaReportAlgo DEBUG Pieces tied together | |
TeslaReportAlgo DEBUG Daughter level 1 CLASS ID = 801 | |
TeslaReportAlgo DEBUG 1st Gen. Daughter ID: 13 | |
TeslaReportAlgo DEBUG Basic daughter level 1 has substructure consisting of: | |
TeslaReportAlgo DEBUG 10010 | |
TeslaReportAlgo DEBUG 803 | |
TeslaReportAlgo DEBUG 11050 | |
TeslaReportAlgo DEBUG 10010 | |
TeslaReportAlgo DEBUG Available information | |
TeslaReportAlgo DEBUG 0#Particle.particleID.pid = 13 | |
TeslaReportAlgo DEBUG 1#Particle.measuredMass = 105.658 | |
TeslaReportAlgo DEBUG 10#Particle.momCov00 = 13.1206 | |
TeslaReportAlgo DEBUG 11#Particle.momCov11 = 8.98439 | |
TeslaReportAlgo DEBUG 12#Particle.momCov22 = 2570.62 | |
TeslaReportAlgo DEBUG 13#Particle.momCov33 = 2575.76 | |
TeslaReportAlgo DEBUG 14#Particle.momCov10 = 1.60751 | |
TeslaReportAlgo DEBUG 15#Particle.momCov20 = 108.722 | |
TeslaReportAlgo DEBUG 16#Particle.momCov21 = 41.5952 | |
TeslaReportAlgo DEBUG 17#Particle.momCov30 = 109.188 | |
TeslaReportAlgo DEBUG 18#Particle.momCov31 = 41.7647 | |
TeslaReportAlgo DEBUG 19#Particle.momCov32 = 2573.18 | |
TeslaReportAlgo DEBUG 2#Particle.referencePoint.z = 21.239 | |
TeslaReportAlgo DEBUG 20#Particle.posmomCov00 = -0.109292 | |
TeslaReportAlgo DEBUG 21#Particle.posmomCov11 = -0.105324 | |
TeslaReportAlgo DEBUG 22#Particle.posmomCov22 = 0 | |
TeslaReportAlgo DEBUG 23#Particle.posmomCov10 = 0.0027581 | |
TeslaReportAlgo DEBUG 24#Particle.posmomCov01 = 0.00298607 | |
TeslaReportAlgo DEBUG 25#Particle.posmomCov20 = -0.00103433 | |
TeslaReportAlgo DEBUG 26#Particle.posmomCov02 = 0 | |
TeslaReportAlgo DEBUG 27#Particle.posmomCov21 = 0.00044627 | |
TeslaReportAlgo DEBUG 28#Particle.posmomCov12 = 0 | |
TeslaReportAlgo DEBUG 29#Particle.posmomCov30 = -0.00560155 | |
TeslaReportAlgo DEBUG 3#Particle.referencePoint.x = 0.000742899 | |
TeslaReportAlgo DEBUG 30#Particle.posmomCov31 = -0.00113256 | |
TeslaReportAlgo DEBUG 31#Particle.posmomCov32 = 0 | |
TeslaReportAlgo DEBUG 32#Particle.posCov00 = 0.00148674 | |
TeslaReportAlgo DEBUG 33#Particle.posCov11 = 0.00141984 | |
TeslaReportAlgo DEBUG 34#Particle.posCov22 = 0 | |
TeslaReportAlgo DEBUG 35#Particle.posCov10 = -5.77974e-05 | |
TeslaReportAlgo DEBUG 36#Particle.posCov20 = 0 | |
TeslaReportAlgo DEBUG 37#Particle.posCov21 = 0 | |
TeslaReportAlgo DEBUG 4#Particle.referencePoint.y = -0.0178004 | |
TeslaReportAlgo DEBUG 5#Particle.slopes.x = 0.0422519 | |
TeslaReportAlgo DEBUG 6#Particle.slopes.y = 0.0161994 | |
TeslaReportAlgo DEBUG 7#Particle.1/p = 7.16595e-05 | |
TeslaReportAlgo DEBUG 8#Particle.conflevel = 0.250063 | |
TeslaReportAlgo DEBUG 9#Particle.massErr = 0 | |
TeslaReportAlgo DEBUG p = 13954.9 | |
TeslaReportAlgo DEBUG p (par_mom) = 13954.9 | |
TeslaReportAlgo DEBUG pT (par_mom) = 630.825 | |
TeslaReportAlgo DEBUG Particle measured mass = 105.658 | |
TeslaReportAlgo DEBUG Particle CL = 0.250063 | |
TeslaReportAlgo DEBUG Available information (track) | |
TeslaReportAlgo DEBUG 0#Track.firstState.z = 21.239 | |
TeslaReportAlgo DEBUG 1#Track.firstState.x = 0.000742899 | |
TeslaReportAlgo DEBUG 10#Track.flags = 2.19556e+06 | |
TeslaReportAlgo DEBUG 11#Track.lastState.z = 11900 | |
TeslaReportAlgo DEBUG 12#Track.lastState.x = 1098.48 | |
TeslaReportAlgo DEBUG 13#Track.lastState.y = 199.578 | |
TeslaReportAlgo DEBUG 14#Track.lastState.tx = 0.133781 | |
TeslaReportAlgo DEBUG 15#Track.lastState.ty = 0.01699 | |
TeslaReportAlgo DEBUG 16#Track.lastState.qOverP = -7.19336e-05 | |
TeslaReportAlgo DEBUG 2#Track.firstState.y = -0.0178004 | |
TeslaReportAlgo DEBUG 3#Track.firstState.tx = 0.0422519 | |
TeslaReportAlgo DEBUG 4#Track.firstState.ty = 0.0161994 | |
TeslaReportAlgo DEBUG 5#Track.firstState.qOverP = -7.16595e-05 | |
TeslaReportAlgo DEBUG 6#Track.chi2PerDoF = 1.16739 | |
TeslaReportAlgo DEBUG 7#Track.nDoF = 32 | |
TeslaReportAlgo DEBUG 8#Track.Likelihood = 999 | |
TeslaReportAlgo DEBUG 9#Track.GhostProb = 999 | |
TeslaReportAlgo DEBUG FastTTValidationTool/ValidateWithTT = 1 | |
TeslaReportAlgo DEBUG MatchVeloMuon = 1 | |
TeslaReportAlgo DEBUG PatForwardTool/LooseForward = 1 | |
TeslaReportAlgo DEBUG PatForwardTool/TightForward = 0 | |
TeslaReportAlgo DEBUG Track #chi^{2}/DoF = 1.16739 | |
TeslaReportAlgo DEBUG Track extra for Rep v2, adding last state | |
TeslaReportAlgo DEBUG Track details added | |
TeslaReportAlgo DEBUG Available information (proto) | |
TeslaReportAlgo DEBUG 0#Proto.extraInfo.IsPhoton = -1000 | |
TeslaReportAlgo DEBUG Proto isPhoton = -1000 | |
TeslaReportAlgo DEBUG ProtoParticle details added | |
TeslaReportAlgo DEBUG Available information (muon) | |
TeslaReportAlgo DEBUG 0#Muon.MuonLLMu = -0.314574 | |
TeslaReportAlgo DEBUG 1#Muon.MuonLLBg = -3.62173 | |
TeslaReportAlgo DEBUG 2#Muon.NShared = 0 | |
TeslaReportAlgo DEBUG 3#Muon.Status = 31 | |
TeslaReportAlgo DEBUG 4#Muon.IsMuon = 1 | |
TeslaReportAlgo DEBUG 5#Muon.IsMuonLoose = 1 | |
TeslaReportAlgo DEBUG 6#Muon.IsMuonTight = 1 | |
TeslaReportAlgo DEBUG Muon LLMu = -0.314574 | |
TeslaReportAlgo DEBUG MuonPID details added | |
TeslaReportAlgo DEBUG Available information (track) | |
TeslaReportAlgo DEBUG 0#Track.firstState.z = 9450 | |
TeslaReportAlgo DEBUG 1#Track.firstState.x = 771.901 | |
TeslaReportAlgo DEBUG 10#Track.flags = 167 | |
TeslaReportAlgo DEBUG 11#Track.lastState.z = 9450 | |
TeslaReportAlgo DEBUG 12#Track.lastState.x = 771.901 | |
TeslaReportAlgo DEBUG 13#Track.lastState.y = 157.968 | |
TeslaReportAlgo DEBUG 14#Track.lastState.tx = 0.13227 | |
TeslaReportAlgo DEBUG 15#Track.lastState.ty = 0.0169744 | |
TeslaReportAlgo DEBUG 16#Track.lastState.qOverP = -7.18745e-05 | |
TeslaReportAlgo DEBUG 2#Track.firstState.y = 157.968 | |
TeslaReportAlgo DEBUG 3#Track.firstState.tx = 0.13227 | |
TeslaReportAlgo DEBUG 4#Track.firstState.ty = 0.0169744 | |
TeslaReportAlgo DEBUG 5#Track.firstState.qOverP = -7.18745e-05 | |
TeslaReportAlgo DEBUG 6#Track.chi2PerDoF = 0 | |
TeslaReportAlgo DEBUG 7#Track.nDoF = 0 | |
TeslaReportAlgo DEBUG 8#Track.Likelihood = 999 | |
TeslaReportAlgo DEBUG 9#Track.GhostProb = 999 | |
TeslaReportAlgo DEBUG Track #chi^{2}/DoF = 0 | |
TeslaReportAlgo DEBUG Track extra for Rep v2, adding last state | |
TeslaReportAlgo DEBUG Track details added | |
TeslaReportAlgo DEBUG Starting to tie pieces together | |
TeslaReportAlgo DEBUG Pieces tied together | |
TeslaReportAlgo DEBUG Daughter level 1 CLASS ID = 802 | |
TeslaReportAlgo DEBUG Available information (vertex) | |
TeslaReportAlgo DEBUG 0#Vertex.chi2 = 0.79613 | |
TeslaReportAlgo DEBUG 1#Vertex.ndf = 1 | |
TeslaReportAlgo DEBUG 10#Vertex.cov20 = -0.00416832 | |
TeslaReportAlgo DEBUG 11#Vertex.cov21 = -0.00195227 | |
TeslaReportAlgo DEBUG 2#Vertex.position.x = -0.0525168 | |
TeslaReportAlgo DEBUG 3#Vertex.position.y = -0.00537085 | |
TeslaReportAlgo DEBUG 4#Vertex.position.z = 20.3083 | |
TeslaReportAlgo DEBUG 5#Vertex.technique = 0 | |
TeslaReportAlgo DEBUG 6#Vertex.cov00 = 0.000861081 | |
TeslaReportAlgo DEBUG 7#Vertex.cov11 = 0.000413868 | |
TeslaReportAlgo DEBUG 8#Vertex.cov22 = 0.0247069 | |
TeslaReportAlgo DEBUG 9#Vertex.cov10 = 0.000256385 | |
TeslaReportAlgo DEBUG Decay vertex chi2 = 0.79613 | |
TeslaReportAlgo DEBUG Setting mother decay vertex | |
TeslaReportAlgo DEBUG End of algorithm execution | |
TeslaReportAlgo DEBUG ==> Execute | |
TeslaReportAlgo... DEBUG SelReports version check requested | |
TeslaReportAlgo...WARNING Sel. reports do not exist!!! | |
TeslaReportAlgo DEBUG VersionNum = 0 | |
TeslaReportAlgo WARNING Requested version number does not equal checker response | |
TeslaReportAlgo DEBUG versionNum = 0, m_ReportVersion = 2 | |
TeslaReportAlgo WARNING For your own safety, I will give you less information than requested, please check report generation | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Particle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Particles' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::ProtoParticle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Protos' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Vertex,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Vertices' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Track,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Tracks' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::RichPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/RichPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::MuonPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/MuonPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::VertexBase,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Rec/Vertex/Primary' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'LHCb::Relation1D<LHCb::Particle,LHCb::VertexBase>' is registered in TS at address 'Tesla/Particle2VertexRelations' | |
Hlt1VertexRepor...WARNING HltVertexReportsDecoder:: No HltVertexReports RawBank for requested SourceID in RawEvent. Quiting. | |
TeslaReportAlgo DEBUG The object of type 'LHCb::HltVertexReports*' has been retrieved from TS at address 'Hlt1/VertexReports' | |
TeslaReportAlgo DEBUG Available vertex reports: | |
TeslaReportAlgo WARNING Sel. reports do not exist!!! | |
TeslaReportAlgo DEBUG ==> Execute | |
TeslaReportAlgo... DEBUG SelReports version check requested | |
TeslaReportAlgo... DEBUG The object of type 'LHCb::HltSelReports*' has been retrieved from TS at address 'Hlt2/SelReports' | |
TeslaReportAlgo... DEBUG Examining mother report | |
TeslaReportAlgo... DEBUG Mother report is of a particle | |
TeslaReportAlgo... DEBUG ReportCheckTool finds verision 2 | |
TeslaReportAlgo DEBUG VersionNum = 2 | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Particle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Particles' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::ProtoParticle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Protos' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Vertex,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Vertices' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Track,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Tracks' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::RichPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/RichPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::MuonPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/MuonPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::VertexBase,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Rec/Vertex/Primary' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'LHCb::Relation1D<LHCb::Particle,LHCb::VertexBase>' is registered in TS at address 'Tesla/Particle2VertexRelations' | |
TeslaReportAlgo DEBUG The object of type 'LHCb::HltVertexReports*' has been retrieved from TS at address 'Hlt1/VertexReports' | |
TeslaReportAlgo DEBUG Available vertex reports: | |
TeslaReportAlgo DEBUG PV3D | |
TeslaReportAlgo DEBUG ProtoPV3D | |
TeslaReportAlgo DEBUG Vertex chi2= 10.9326, ndf =15 | |
TeslaReportAlgo DEBUG Vertex key= 0 | |
TeslaReportAlgo DEBUG Vertex chi2= 2.72765, ndf =11 | |
TeslaReportAlgo DEBUG Vertex key= 1 | |
TeslaReportAlgo DEBUG Vertex chi2= 17.948, ndf =15 | |
TeslaReportAlgo DEBUG Vertex key= 2 | |
TeslaReportAlgo DEBUG The object of type 'LHCb::HltSelReports*' has been retrieved from TS at address 'Hlt2/SelReports' | |
TeslaReportAlgo DEBUG Available reports: | |
TeslaReportAlgo DEBUG Hlt2DiMuonDecision | |
TeslaReportAlgo DEBUG Hlt2DiMuonJPsiDecision | |
TeslaReportAlgo DEBUG Hlt2Global | |
TeslaReportAlgo DEBUG Hlt2SingleMuonLowPTDecision | |
TeslaReportAlgo DEBUG Required line has been fired | |
TeslaReportAlgo DEBUG Reference: | |
TeslaReportAlgo DEBUG Particle class ID = 801 | |
TeslaReportAlgo DEBUG Track class ID = 10010 | |
TeslaReportAlgo DEBUG RecVertex class ID = 10030 | |
TeslaReportAlgo DEBUG Vertex class ID = 802 | |
TeslaReportAlgo DEBUG ProtoParticle class ID = 803 | |
TeslaReportAlgo DEBUG { summarizedObjectCLID : 1 numericalInfo : { 0#SelectionID:50201 , } substructure : { 14:801 , } lhcbIDs : { } } | |
TeslaReportAlgo DEBUG MOTHER CLASS ID = 1 | |
TeslaReportAlgo DEBUG LHCbIDs.size() = 0 | |
TeslaReportAlgo DEBUG Number of triggered candidates = 1 | |
TeslaReportAlgo DEBUG [0xb568700] | |
TeslaReportAlgo DEBUG Starting loop over triggered candidates | |
TeslaReportAlgo DEBUG Mother object CLASS ID = 801 | |
TeslaReportAlgo DEBUG Found mother with ID: 443 | |
TeslaReportAlgo DEBUG Mother has substructure consisting of: | |
TeslaReportAlgo DEBUG 801 | |
TeslaReportAlgo DEBUG 801 | |
TeslaReportAlgo DEBUG 802 | |
TeslaReportAlgo DEBUG Available information | |
TeslaReportAlgo DEBUG 0#Particle.particleID.pid = 443 | |
TeslaReportAlgo DEBUG 1#Particle.measuredMass = 3113.42 | |
TeslaReportAlgo DEBUG 10#Particle.momCov00 = 57.8136 | |
TeslaReportAlgo DEBUG 11#Particle.momCov11 = 68.7186 | |
TeslaReportAlgo DEBUG 12#Particle.momCov22 = 15218.2 | |
TeslaReportAlgo DEBUG 13#Particle.momCov33 = 15311.7 | |
TeslaReportAlgo DEBUG 14#Particle.momCov10 = 16.9234 | |
TeslaReportAlgo DEBUG 15#Particle.momCov20 = 675.975 | |
TeslaReportAlgo DEBUG 16#Particle.momCov21 = -154.974 | |
TeslaReportAlgo DEBUG 17#Particle.momCov30 = 680.115 | |
TeslaReportAlgo DEBUG 18#Particle.momCov31 = -152.641 | |
TeslaReportAlgo DEBUG 19#Particle.momCov32 = 15264.8 | |
TeslaReportAlgo DEBUG 2#Particle.referencePoint.z = 78.6508 | |
TeslaReportAlgo DEBUG 20#Particle.posmomCov00 = -0.0584915 | |
TeslaReportAlgo DEBUG 21#Particle.posmomCov11 = -0.0534894 | |
TeslaReportAlgo DEBUG 22#Particle.posmomCov22 = 0.128757 | |
TeslaReportAlgo DEBUG 23#Particle.posmomCov10 = -0.0133925 | |
TeslaReportAlgo DEBUG 24#Particle.posmomCov01 = 0.000420782 | |
TeslaReportAlgo DEBUG 25#Particle.posmomCov20 = -0.0110593 | |
TeslaReportAlgo DEBUG 26#Particle.posmomCov02 = -0.148944 | |
TeslaReportAlgo DEBUG 27#Particle.posmomCov21 = 0.00939065 | |
TeslaReportAlgo DEBUG 28#Particle.posmomCov12 = -0.222249 | |
TeslaReportAlgo DEBUG 29#Particle.posmomCov30 = -0.0113279 | |
TeslaReportAlgo DEBUG 3#Particle.referencePoint.x = 0.0256198 | |
TeslaReportAlgo DEBUG 30#Particle.posmomCov31 = 0.0105085 | |
TeslaReportAlgo DEBUG 31#Particle.posmomCov32 = 0.159497 | |
TeslaReportAlgo DEBUG 32#Particle.posCov00 = 0.000334045 | |
TeslaReportAlgo DEBUG 33#Particle.posCov11 = 0.000216492 | |
TeslaReportAlgo DEBUG 34#Particle.posCov22 = 0.0258516 | |
TeslaReportAlgo DEBUG 35#Particle.posCov10 = 8.78323e-05 | |
TeslaReportAlgo DEBUG 36#Particle.posCov20 = 0.00220899 | |
TeslaReportAlgo DEBUG 37#Particle.posCov21 = 0.00146688 | |
TeslaReportAlgo DEBUG 4#Particle.referencePoint.y = -0.00368265 | |
TeslaReportAlgo DEBUG 5#Particle.slopes.x = 0.0532829 | |
TeslaReportAlgo DEBUG 6#Particle.slopes.y = 0.0098914 | |
TeslaReportAlgo DEBUG 7#Particle.1/p = 2.34348e-05 | |
TeslaReportAlgo DEBUG 8#Particle.conflevel = -1 | |
TeslaReportAlgo DEBUG 9#Particle.massErr = 9.39381 | |
TeslaReportAlgo DEBUG p = 42671.5 | |
TeslaReportAlgo DEBUG p (par_mom) = 42671.5 | |
TeslaReportAlgo DEBUG pT (par_mom) = 2309.12 | |
TeslaReportAlgo DEBUG Particle measured mass = 3113.42 | |
TeslaReportAlgo DEBUG Particle CL = -1 | |
TeslaReportAlgo DEBUG Daughter level 1 CLASS ID = 801 | |
TeslaReportAlgo DEBUG 1st Gen. Daughter ID: -13 | |
TeslaReportAlgo DEBUG Basic daughter level 1 has substructure consisting of: | |
TeslaReportAlgo DEBUG 10010 | |
TeslaReportAlgo DEBUG 803 | |
TeslaReportAlgo DEBUG 11050 | |
TeslaReportAlgo DEBUG 10010 | |
TeslaReportAlgo DEBUG Available information | |
TeslaReportAlgo DEBUG 0#Particle.particleID.pid = -13 | |
TeslaReportAlgo DEBUG 1#Particle.measuredMass = 105.658 | |
TeslaReportAlgo DEBUG 10#Particle.momCov00 = 37.638 | |
TeslaReportAlgo DEBUG 11#Particle.momCov11 = 37.2759 | |
TeslaReportAlgo DEBUG 12#Particle.momCov22 = 3577.25 | |
TeslaReportAlgo DEBUG 13#Particle.momCov33 = 3640.36 | |
TeslaReportAlgo DEBUG 14#Particle.momCov10 = 30.7831 | |
TeslaReportAlgo DEBUG 15#Particle.momCov20 = 336.807 | |
TeslaReportAlgo DEBUG 16#Particle.momCov21 = 335.508 | |
TeslaReportAlgo DEBUG 17#Particle.momCov30 = 340.229 | |
TeslaReportAlgo DEBUG 18#Particle.momCov31 = 338.918 | |
TeslaReportAlgo DEBUG 19#Particle.momCov32 = 3608.62 | |
TeslaReportAlgo DEBUG 2#Particle.referencePoint.z = 78.4347 | |
TeslaReportAlgo DEBUG 20#Particle.posmomCov00 = -0.0373222 | |
TeslaReportAlgo DEBUG 21#Particle.posmomCov11 = -0.0304355 | |
TeslaReportAlgo DEBUG 22#Particle.posmomCov22 = 0 | |
TeslaReportAlgo DEBUG 23#Particle.posmomCov10 = 0.00391354 | |
TeslaReportAlgo DEBUG 24#Particle.posmomCov01 = 0.0093539 | |
TeslaReportAlgo DEBUG 25#Particle.posmomCov20 = -0.0437613 | |
TeslaReportAlgo DEBUG 26#Particle.posmomCov02 = 0 | |
TeslaReportAlgo DEBUG 27#Particle.posmomCov21 = 0.0113988 | |
TeslaReportAlgo DEBUG 28#Particle.posmomCov12 = 0 | |
TeslaReportAlgo DEBUG 29#Particle.posmomCov30 = -0.0464444 | |
TeslaReportAlgo DEBUG 3#Particle.referencePoint.x = 0.0139683 | |
TeslaReportAlgo DEBUG 30#Particle.posmomCov31 = 0.00932123 | |
TeslaReportAlgo DEBUG 31#Particle.posmomCov32 = 0 | |
TeslaReportAlgo DEBUG 32#Particle.posCov00 = 0.000224338 | |
TeslaReportAlgo DEBUG 33#Particle.posCov11 = 0.00020573 | |
TeslaReportAlgo DEBUG 34#Particle.posCov22 = 0 | |
TeslaReportAlgo DEBUG 35#Particle.posCov10 = -8.32134e-05 | |
TeslaReportAlgo DEBUG 36#Particle.posCov20 = 0 | |
TeslaReportAlgo DEBUG 37#Particle.posCov21 = 0 | |
TeslaReportAlgo DEBUG 4#Particle.referencePoint.y = -0.0296946 | |
TeslaReportAlgo DEBUG 5#Particle.slopes.x = 0.0925676 | |
TeslaReportAlgo DEBUG 6#Particle.slopes.y = 0.0940481 | |
TeslaReportAlgo DEBUG 7#Particle.1/p = 6.09478e-05 | |
TeslaReportAlgo DEBUG 8#Particle.conflevel = 0.250063 | |
TeslaReportAlgo DEBUG 9#Particle.massErr = 0 | |
TeslaReportAlgo DEBUG p = 16407.5 | |
TeslaReportAlgo DEBUG p (par_mom) = 16407.5 | |
TeslaReportAlgo DEBUG pT (par_mom) = 2146.54 | |
TeslaReportAlgo DEBUG Particle measured mass = 105.658 | |
TeslaReportAlgo DEBUG Particle CL = 0.250063 | |
TeslaReportAlgo DEBUG Available information (track) | |
TeslaReportAlgo DEBUG 0#Track.firstState.z = 78.4347 | |
TeslaReportAlgo DEBUG 1#Track.firstState.x = 0.0139683 | |
TeslaReportAlgo DEBUG 10#Track.flags = 2.19556e+06 | |
TeslaReportAlgo DEBUG 11#Track.lastState.z = 11900 | |
TeslaReportAlgo DEBUG 12#Track.lastState.x = 583.515 | |
TeslaReportAlgo DEBUG 13#Track.lastState.y = 1107.18 | |
TeslaReportAlgo DEBUG 14#Track.lastState.tx = 0.0145043 | |
TeslaReportAlgo DEBUG 15#Track.lastState.ty = 0.093258 | |
TeslaReportAlgo DEBUG 16#Track.lastState.qOverP = 6.11268e-05 | |
TeslaReportAlgo DEBUG 2#Track.firstState.y = -0.0296946 | |
TeslaReportAlgo DEBUG 3#Track.firstState.tx = 0.0925676 | |
TeslaReportAlgo DEBUG 4#Track.firstState.ty = 0.0940481 | |
TeslaReportAlgo DEBUG 5#Track.firstState.qOverP = 6.09478e-05 | |
TeslaReportAlgo DEBUG 6#Track.chi2PerDoF = 1.34924 | |
TeslaReportAlgo DEBUG 7#Track.nDoF = 32 | |
TeslaReportAlgo DEBUG 8#Track.Likelihood = 999 | |
TeslaReportAlgo DEBUG 9#Track.GhostProb = 999 | |
TeslaReportAlgo DEBUG FastTTValidationTool/ValidateWithTT = 1 | |
TeslaReportAlgo DEBUG MatchVeloMuon = 1 | |
TeslaReportAlgo DEBUG PatForwardTool/LooseForward = 1 | |
TeslaReportAlgo DEBUG PatForwardTool/TightForward = 1 | |
TeslaReportAlgo DEBUG Track #chi^{2}/DoF = 1.34924 | |
TeslaReportAlgo DEBUG Track extra for Rep v2, adding last state | |
TeslaReportAlgo DEBUG Track details added | |
TeslaReportAlgo DEBUG Available information (proto) | |
TeslaReportAlgo DEBUG 0#Proto.extraInfo.IsPhoton = -1000 | |
TeslaReportAlgo DEBUG Proto isPhoton = -1000 | |
TeslaReportAlgo DEBUG ProtoParticle details added | |
TeslaReportAlgo DEBUG Available information (muon) | |
TeslaReportAlgo DEBUG 0#Muon.MuonLLMu = -1.59899 | |
TeslaReportAlgo DEBUG 1#Muon.MuonLLBg = -5.08068 | |
TeslaReportAlgo DEBUG 2#Muon.NShared = 0 | |
TeslaReportAlgo DEBUG 3#Muon.Status = 31 | |
TeslaReportAlgo DEBUG 4#Muon.IsMuon = 1 | |
TeslaReportAlgo DEBUG 5#Muon.IsMuonLoose = 1 | |
TeslaReportAlgo DEBUG 6#Muon.IsMuonTight = 1 | |
TeslaReportAlgo DEBUG Muon LLMu = -1.59899 | |
TeslaReportAlgo DEBUG MuonPID details added | |
TeslaReportAlgo DEBUG Available information (track) | |
TeslaReportAlgo DEBUG 0#Track.firstState.z = 9450 | |
TeslaReportAlgo DEBUG 1#Track.firstState.x = 547.172 | |
TeslaReportAlgo DEBUG 10#Track.flags = 167 | |
TeslaReportAlgo DEBUG 11#Track.lastState.z = 9450 | |
TeslaReportAlgo DEBUG 12#Track.lastState.x = 547.172 | |
TeslaReportAlgo DEBUG 13#Track.lastState.y = 878.631 | |
TeslaReportAlgo DEBUG 14#Track.lastState.tx = 0.0155363 | |
TeslaReportAlgo DEBUG 15#Track.lastState.ty = 0.093334 | |
TeslaReportAlgo DEBUG 16#Track.lastState.qOverP = 6.10844e-05 | |
TeslaReportAlgo DEBUG 2#Track.firstState.y = 878.631 | |
TeslaReportAlgo DEBUG 3#Track.firstState.tx = 0.0155363 | |
TeslaReportAlgo DEBUG 4#Track.firstState.ty = 0.093334 | |
TeslaReportAlgo DEBUG 5#Track.firstState.qOverP = 6.10844e-05 | |
TeslaReportAlgo DEBUG 6#Track.chi2PerDoF = 0 | |
TeslaReportAlgo DEBUG 7#Track.nDoF = 0 | |
TeslaReportAlgo DEBUG 8#Track.Likelihood = 999 | |
TeslaReportAlgo DEBUG 9#Track.GhostProb = 999 | |
TeslaReportAlgo DEBUG Track #chi^{2}/DoF = 0 | |
TeslaReportAlgo DEBUG Track extra for Rep v2, adding last state | |
TeslaReportAlgo DEBUG Track details added | |
TeslaReportAlgo DEBUG Starting to tie pieces together | |
TeslaReportAlgo DEBUG Pieces tied together | |
TeslaReportAlgo DEBUG Daughter level 1 CLASS ID = 801 | |
TeslaReportAlgo DEBUG 1st Gen. Daughter ID: 13 | |
TeslaReportAlgo DEBUG Basic daughter level 1 has substructure consisting of: | |
TeslaReportAlgo DEBUG 10010 | |
TeslaReportAlgo DEBUG 803 | |
TeslaReportAlgo DEBUG 11050 | |
TeslaReportAlgo DEBUG 10010 | |
TeslaReportAlgo DEBUG Available information | |
TeslaReportAlgo DEBUG 0#Particle.particleID.pid = 13 | |
TeslaReportAlgo DEBUG 1#Particle.measuredMass = 105.658 | |
TeslaReportAlgo DEBUG 10#Particle.momCov00 = 20.9011 | |
TeslaReportAlgo DEBUG 11#Particle.momCov11 = 31.5819 | |
TeslaReportAlgo DEBUG 12#Particle.momCov22 = 11646.5 | |
TeslaReportAlgo DEBUG 13#Particle.momCov33 = 11676.7 | |
TeslaReportAlgo DEBUG 14#Particle.momCov10 = -14.1775 | |
TeslaReportAlgo DEBUG 15#Particle.momCov20 = 337.157 | |
TeslaReportAlgo DEBUG 16#Particle.momCov21 = -489.601 | |
TeslaReportAlgo DEBUG 17#Particle.momCov30 = 337.916 | |
TeslaReportAlgo DEBUG 18#Particle.momCov31 = -490.697 | |
TeslaReportAlgo DEBUG 19#Particle.momCov32 = 11661.6 | |
TeslaReportAlgo DEBUG 2#Particle.referencePoint.z = 78.621 | |
TeslaReportAlgo DEBUG 20#Particle.posmomCov00 = -0.0672846 | |
TeslaReportAlgo DEBUG 21#Particle.posmomCov11 = -0.0652271 | |
TeslaReportAlgo DEBUG 22#Particle.posmomCov22 = 0 | |
TeslaReportAlgo DEBUG 23#Particle.posmomCov10 = -0.00119314 | |
TeslaReportAlgo DEBUG 24#Particle.posmomCov01 = -0.000436561 | |
TeslaReportAlgo DEBUG 25#Particle.posmomCov20 = 0.0215507 | |
TeslaReportAlgo DEBUG 26#Particle.posmomCov02 = 0 | |
TeslaReportAlgo DEBUG 27#Particle.posmomCov21 = -0.000197916 | |
TeslaReportAlgo DEBUG 28#Particle.posmomCov12 = 0 | |
TeslaReportAlgo DEBUG 29#Particle.posmomCov30 = 0.0196199 | |
TeslaReportAlgo DEBUG 3#Particle.referencePoint.x = 0.010095 | |
TeslaReportAlgo DEBUG 30#Particle.posmomCov31 = 0.00253162 | |
TeslaReportAlgo DEBUG 31#Particle.posmomCov32 = 0 | |
TeslaReportAlgo DEBUG 32#Particle.posCov00 = 0.000464469 | |
TeslaReportAlgo DEBUG 33#Particle.posCov11 = 0.000426298 | |
TeslaReportAlgo DEBUG 34#Particle.posCov22 = 0 | |
TeslaReportAlgo DEBUG 35#Particle.posCov10 = 8.79608e-06 | |
TeslaReportAlgo DEBUG 36#Particle.posCov20 = 0 | |
TeslaReportAlgo DEBUG 37#Particle.posCov21 = 0 | |
TeslaReportAlgo DEBUG 4#Particle.referencePoint.y = 0.00362215 | |
TeslaReportAlgo DEBUG 5#Particle.slopes.x = 0.0290581 | |
TeslaReportAlgo DEBUG 6#Particle.slopes.y = -0.0420922 | |
TeslaReportAlgo DEBUG 7#Particle.1/p = 3.7915e-05 | |
TeslaReportAlgo DEBUG 8#Particle.conflevel = 0.250063 | |
TeslaReportAlgo DEBUG 9#Particle.massErr = 0 | |
TeslaReportAlgo DEBUG p = 26374.8 | |
TeslaReportAlgo DEBUG p (par_mom) = 26374.8 | |
TeslaReportAlgo DEBUG pT (par_mom) = 1347.26 | |
TeslaReportAlgo DEBUG Particle measured mass = 105.658 | |
TeslaReportAlgo DEBUG Particle CL = 0.250063 | |
TeslaReportAlgo DEBUG Available information (track) | |
TeslaReportAlgo DEBUG 0#Track.firstState.z = 78.621 | |
TeslaReportAlgo DEBUG 1#Track.firstState.x = 0.010095 | |
TeslaReportAlgo DEBUG 10#Track.flags = 2.19556e+06 | |
TeslaReportAlgo DEBUG 11#Track.lastState.z = 11900 | |
TeslaReportAlgo DEBUG 12#Track.lastState.x = 657.021 | |
TeslaReportAlgo DEBUG 13#Track.lastState.y = -497.328 | |
TeslaReportAlgo DEBUG 14#Track.lastState.tx = 0.0773246 | |
TeslaReportAlgo DEBUG 15#Track.lastState.ty = -0.042005 | |
TeslaReportAlgo DEBUG 16#Track.lastState.qOverP = -3.7996e-05 | |
TeslaReportAlgo DEBUG 2#Track.firstState.y = 0.00362215 | |
TeslaReportAlgo DEBUG 3#Track.firstState.tx = 0.0290581 | |
TeslaReportAlgo DEBUG 4#Track.firstState.ty = -0.0420922 | |
TeslaReportAlgo DEBUG 5#Track.firstState.qOverP = -3.7915e-05 | |
TeslaReportAlgo DEBUG 6#Track.chi2PerDoF = 1.1778 | |
TeslaReportAlgo DEBUG 7#Track.nDoF = 33 | |
TeslaReportAlgo DEBUG 8#Track.Likelihood = 999 | |
TeslaReportAlgo DEBUG 9#Track.GhostProb = 999 | |
TeslaReportAlgo DEBUG MatchVeloMuon = 1 | |
TeslaReportAlgo DEBUG PatForwardTool/LooseForward = 1 | |
TeslaReportAlgo DEBUG Track #chi^{2}/DoF = 1.1778 | |
TeslaReportAlgo DEBUG Track extra for Rep v2, adding last state | |
TeslaReportAlgo DEBUG Track details added | |
TeslaReportAlgo DEBUG Available information (proto) | |
TeslaReportAlgo DEBUG 0#Proto.extraInfo.IsPhoton = -1000 | |
TeslaReportAlgo DEBUG Proto isPhoton = -1000 | |
TeslaReportAlgo DEBUG ProtoParticle details added | |
TeslaReportAlgo DEBUG Available information (muon) | |
TeslaReportAlgo DEBUG 0#Muon.MuonLLMu = -0.307341 | |
TeslaReportAlgo DEBUG 1#Muon.MuonLLBg = -3.81659 | |
TeslaReportAlgo DEBUG 2#Muon.NShared = 0 | |
TeslaReportAlgo DEBUG 3#Muon.Status = 31 | |
TeslaReportAlgo DEBUG 4#Muon.IsMuon = 1 | |
TeslaReportAlgo DEBUG 5#Muon.IsMuonLoose = 1 | |
TeslaReportAlgo DEBUG 6#Muon.IsMuonTight = 1 | |
TeslaReportAlgo DEBUG Muon LLMu = -0.307341 | |
TeslaReportAlgo DEBUG MuonPID details added | |
TeslaReportAlgo DEBUG Available information (track) | |
TeslaReportAlgo DEBUG 0#Track.firstState.z = 9450 | |
TeslaReportAlgo DEBUG 1#Track.firstState.x = 468.192 | |
TeslaReportAlgo DEBUG 10#Track.flags = 167 | |
TeslaReportAlgo DEBUG 11#Track.lastState.z = 9450 | |
TeslaReportAlgo DEBUG 12#Track.lastState.x = 468.192 | |
TeslaReportAlgo DEBUG 13#Track.lastState.y = -394.418 | |
TeslaReportAlgo DEBUG 14#Track.lastState.tx = 0.0765431 | |
TeslaReportAlgo DEBUG 15#Track.lastState.ty = -0.0420067 | |
TeslaReportAlgo DEBUG 16#Track.lastState.qOverP = -3.79788e-05 | |
TeslaReportAlgo DEBUG 2#Track.firstState.y = -394.418 | |
TeslaReportAlgo DEBUG 3#Track.firstState.tx = 0.0765431 | |
TeslaReportAlgo DEBUG 4#Track.firstState.ty = -0.0420067 | |
TeslaReportAlgo DEBUG 5#Track.firstState.qOverP = -3.79788e-05 | |
TeslaReportAlgo DEBUG 6#Track.chi2PerDoF = 0 | |
TeslaReportAlgo DEBUG 7#Track.nDoF = 0 | |
TeslaReportAlgo DEBUG 8#Track.Likelihood = 999 | |
TeslaReportAlgo DEBUG 9#Track.GhostProb = 999 | |
TeslaReportAlgo DEBUG Track #chi^{2}/DoF = 0 | |
TeslaReportAlgo DEBUG Track extra for Rep v2, adding last state | |
TeslaReportAlgo DEBUG Track details added | |
TeslaReportAlgo DEBUG Starting to tie pieces together | |
TeslaReportAlgo DEBUG Pieces tied together | |
TeslaReportAlgo DEBUG Daughter level 1 CLASS ID = 802 | |
TeslaReportAlgo DEBUG Available information (vertex) | |
TeslaReportAlgo DEBUG 0#Vertex.chi2 = 0.907558 | |
TeslaReportAlgo DEBUG 1#Vertex.ndf = 1 | |
TeslaReportAlgo DEBUG 10#Vertex.cov20 = 0.00220899 | |
TeslaReportAlgo DEBUG 11#Vertex.cov21 = 0.00146688 | |
TeslaReportAlgo DEBUG 2#Vertex.position.x = 0.0256198 | |
TeslaReportAlgo DEBUG 3#Vertex.position.y = -0.00368265 | |
TeslaReportAlgo DEBUG 4#Vertex.position.z = 78.6508 | |
TeslaReportAlgo DEBUG 5#Vertex.technique = 0 | |
TeslaReportAlgo DEBUG 6#Vertex.cov00 = 0.000334045 | |
TeslaReportAlgo DEBUG 7#Vertex.cov11 = 0.000216492 | |
TeslaReportAlgo DEBUG 8#Vertex.cov22 = 0.0258516 | |
TeslaReportAlgo DEBUG 9#Vertex.cov10 = 8.78323e-05 | |
TeslaReportAlgo DEBUG Decay vertex chi2 = 0.907558 | |
TeslaReportAlgo DEBUG Setting mother decay vertex | |
TeslaReportAlgo DEBUG End of algorithm execution | |
TeslaReportAlgo DEBUG ==> Execute | |
TeslaReportAlgo... DEBUG SelReports version check requested | |
TeslaReportAlgo...WARNING Sel. reports do not exist!!! | |
TeslaReportAlgo DEBUG VersionNum = 0 | |
TeslaReportAlgo WARNING Requested version number does not equal checker response | |
TeslaReportAlgo DEBUG versionNum = 0, m_ReportVersion = 2 | |
TeslaReportAlgo WARNING For your own safety, I will give you less information than requested, please check report generation | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Particle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Particles' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::ProtoParticle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Protos' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Vertex,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Vertices' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Track,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Tracks' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::RichPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/RichPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::MuonPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/MuonPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::VertexBase,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Rec/Vertex/Primary' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'LHCb::Relation1D<LHCb::Particle,LHCb::VertexBase>' is registered in TS at address 'Tesla/Particle2VertexRelations' | |
Hlt1VertexRepor...WARNING HltVertexReportsDecoder:: No HltVertexReports RawBank for requested SourceID in RawEvent. Quiting. | |
TeslaReportAlgo DEBUG The object of type 'LHCb::HltVertexReports*' has been retrieved from TS at address 'Hlt1/VertexReports' | |
TeslaReportAlgo DEBUG Available vertex reports: | |
TeslaReportAlgo WARNING Sel. reports do not exist!!! | |
TeslaReportAlgo DEBUG ==> Execute | |
TeslaReportAlgo... DEBUG SelReports version check requested | |
TeslaReportAlgo... DEBUG The object of type 'LHCb::HltSelReports*' has been retrieved from TS at address 'Hlt2/SelReports' | |
TeslaReportAlgo DEBUG VersionNum = 99 | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Particle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Particles' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::ProtoParticle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Protos' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Vertex,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Vertices' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Track,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Tracks' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::RichPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/RichPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::MuonPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/MuonPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::VertexBase,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Rec/Vertex/Primary' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'LHCb::Relation1D<LHCb::Particle,LHCb::VertexBase>' is registered in TS at address 'Tesla/Particle2VertexRelations' | |
TeslaReportAlgo DEBUG The object of type 'LHCb::HltVertexReports*' has been retrieved from TS at address 'Hlt1/VertexReports' | |
TeslaReportAlgo DEBUG Available vertex reports: | |
TeslaReportAlgo DEBUG PV3D | |
TeslaReportAlgo DEBUG ProtoPV3D | |
TeslaReportAlgo DEBUG Vertex chi2= 91.538, ndf =135 | |
TeslaReportAlgo DEBUG Vertex key= 0 | |
TeslaReportAlgo DEBUG Vertex chi2= 31.9897, ndf =63 | |
TeslaReportAlgo DEBUG Vertex key= 1 | |
TeslaReportAlgo DEBUG The object of type 'LHCb::HltSelReports*' has been retrieved from TS at address 'Hlt2/SelReports' | |
TeslaReportAlgo DEBUG Available reports: | |
TeslaReportAlgo DEBUG Hlt2Global | |
TeslaReportAlgo DEBUG Hlt2SingleMuonDecision | |
TeslaReportAlgo DEBUG Hlt2SingleMuonLowPTDecision | |
TeslaReportAlgo DEBUG End of algorithm execution | |
TeslaReportAlgo DEBUG ==> Execute | |
TeslaReportAlgo... DEBUG SelReports version check requested | |
TeslaReportAlgo...WARNING Sel. reports do not exist!!! | |
TeslaReportAlgo DEBUG VersionNum = 0 | |
TeslaReportAlgo WARNING Requested version number does not equal checker response | |
TeslaReportAlgo DEBUG versionNum = 0, m_ReportVersion = 2 | |
TeslaReportAlgo WARNING For your own safety, I will give you less information than requested, please check report generation | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Particle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Particles' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::ProtoParticle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Protos' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Vertex,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Vertices' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Track,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Tracks' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::RichPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/RichPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::MuonPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/MuonPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::VertexBase,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Rec/Vertex/Primary' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'LHCb::Relation1D<LHCb::Particle,LHCb::VertexBase>' is registered in TS at address 'Tesla/Particle2VertexRelations' | |
Hlt1VertexRepor...WARNING HltVertexReportsDecoder:: No HltVertexReports RawBank for requested SourceID in RawEvent. Quiting. | |
TeslaReportAlgo DEBUG The object of type 'LHCb::HltVertexReports*' has been retrieved from TS at address 'Hlt1/VertexReports' | |
TeslaReportAlgo DEBUG Available vertex reports: | |
TeslaReportAlgo WARNING Sel. reports do not exist!!! | |
TeslaReportAlgo DEBUG ==> Execute | |
TeslaReportAlgo... DEBUG SelReports version check requested | |
TeslaReportAlgo...WARNING Sel. reports do not exist!!! | |
TeslaReportAlgo DEBUG VersionNum = 0 | |
TeslaReportAlgo WARNING Requested version number does not equal checker response | |
TeslaReportAlgo DEBUG versionNum = 0, m_ReportVersion = 2 | |
TeslaReportAlgo WARNING For your own safety, I will give you less information than requested, please check report generation | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Particle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Particles' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::ProtoParticle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Protos' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Vertex,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Vertices' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Track,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Tracks' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::RichPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/RichPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::MuonPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/MuonPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::VertexBase,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Rec/Vertex/Primary' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'LHCb::Relation1D<LHCb::Particle,LHCb::VertexBase>' is registered in TS at address 'Tesla/Particle2VertexRelations' | |
Hlt1VertexRepor...WARNING HltVertexReportsDecoder:: No HltVertexReports RawBank for requested SourceID in RawEvent. Quiting. | |
TeslaReportAlgo DEBUG The object of type 'LHCb::HltVertexReports*' has been retrieved from TS at address 'Hlt1/VertexReports' | |
TeslaReportAlgo DEBUG Available vertex reports: | |
TeslaReportAlgo WARNING Sel. reports do not exist!!! | |
TeslaReportAlgo DEBUG ==> Execute | |
TeslaReportAlgo... DEBUG SelReports version check requested | |
TeslaReportAlgo... DEBUG The object of type 'LHCb::HltSelReports*' has been retrieved from TS at address 'Hlt2/SelReports' | |
TeslaReportAlgo... DEBUG Examining mother report | |
TeslaReportAlgo... DEBUG Mother report is of a particle | |
TeslaReportAlgo... DEBUG ReportCheckTool finds verision 2 | |
TeslaReportAlgo DEBUG VersionNum = 2 | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Particle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Particles' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::ProtoParticle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Protos' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Vertex,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Vertices' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Track,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Tracks' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::RichPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/RichPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::MuonPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/MuonPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::VertexBase,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Rec/Vertex/Primary' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'LHCb::Relation1D<LHCb::Particle,LHCb::VertexBase>' is registered in TS at address 'Tesla/Particle2VertexRelations' | |
TeslaReportAlgo DEBUG The object of type 'LHCb::HltVertexReports*' has been retrieved from TS at address 'Hlt1/VertexReports' | |
TeslaReportAlgo DEBUG Available vertex reports: | |
TeslaReportAlgo DEBUG PV3D | |
TeslaReportAlgo DEBUG ProtoPV3D | |
TeslaReportAlgo DEBUG Vertex chi2= 55.0014, ndf =83 | |
TeslaReportAlgo DEBUG Vertex key= 0 | |
TeslaReportAlgo DEBUG The object of type 'LHCb::HltSelReports*' has been retrieved from TS at address 'Hlt2/SelReports' | |
TeslaReportAlgo DEBUG Available reports: | |
TeslaReportAlgo DEBUG Hlt2DiMuonDecision | |
TeslaReportAlgo DEBUG Hlt2DiMuonJPsiDecision | |
TeslaReportAlgo DEBUG Hlt2Global | |
TeslaReportAlgo DEBUG Hlt2SingleMuonLowPTDecision | |
TeslaReportAlgo DEBUG Required line has been fired | |
TeslaReportAlgo DEBUG Reference: | |
TeslaReportAlgo DEBUG Particle class ID = 801 | |
TeslaReportAlgo DEBUG Track class ID = 10010 | |
TeslaReportAlgo DEBUG RecVertex class ID = 10030 | |
TeslaReportAlgo DEBUG Vertex class ID = 802 | |
TeslaReportAlgo DEBUG ProtoParticle class ID = 803 | |
TeslaReportAlgo DEBUG { summarizedObjectCLID : 1 numericalInfo : { 0#SelectionID:50201 , } substructure : { 14:801 , } lhcbIDs : { } } | |
TeslaReportAlgo DEBUG MOTHER CLASS ID = 1 | |
TeslaReportAlgo DEBUG LHCbIDs.size() = 0 | |
TeslaReportAlgo DEBUG Number of triggered candidates = 1 | |
TeslaReportAlgo DEBUG [0xb568c00] | |
TeslaReportAlgo DEBUG Starting loop over triggered candidates | |
TeslaReportAlgo DEBUG Mother object CLASS ID = 801 | |
TeslaReportAlgo DEBUG Found mother with ID: 443 | |
TeslaReportAlgo DEBUG Mother has substructure consisting of: | |
TeslaReportAlgo DEBUG 801 | |
TeslaReportAlgo DEBUG 801 | |
TeslaReportAlgo DEBUG 802 | |
TeslaReportAlgo DEBUG Available information | |
TeslaReportAlgo DEBUG 0#Particle.particleID.pid = 443 | |
TeslaReportAlgo DEBUG 1#Particle.measuredMass = 3061.1 | |
TeslaReportAlgo DEBUG 10#Particle.momCov00 = 232.74 | |
TeslaReportAlgo DEBUG 11#Particle.momCov11 = 128.39 | |
TeslaReportAlgo DEBUG 12#Particle.momCov22 = 231699 | |
TeslaReportAlgo DEBUG 13#Particle.momCov33 = 231967 | |
TeslaReportAlgo DEBUG 14#Particle.momCov10 = -106.136 | |
TeslaReportAlgo DEBUG 15#Particle.momCov20 = 4833.17 | |
TeslaReportAlgo DEBUG 16#Particle.momCov21 = -4071.08 | |
TeslaReportAlgo DEBUG 17#Particle.momCov30 = 4837.55 | |
TeslaReportAlgo DEBUG 18#Particle.momCov31 = -4074.44 | |
TeslaReportAlgo DEBUG 19#Particle.momCov32 = 231833 | |
TeslaReportAlgo DEBUG 2#Particle.referencePoint.z = 65.0597 | |
TeslaReportAlgo DEBUG 20#Particle.posmomCov00 = -0.168132 | |
TeslaReportAlgo DEBUG 21#Particle.posmomCov11 = -0.211006 | |
TeslaReportAlgo DEBUG 22#Particle.posmomCov22 = -21.2036 | |
TeslaReportAlgo DEBUG 23#Particle.posmomCov10 = 0.00629384 | |
TeslaReportAlgo DEBUG 24#Particle.posmomCov01 = 0.0413644 | |
TeslaReportAlgo DEBUG 25#Particle.posmomCov20 = 0.00821706 | |
TeslaReportAlgo DEBUG 26#Particle.posmomCov02 = -2.73074 | |
TeslaReportAlgo DEBUG 27#Particle.posmomCov21 = 0.457542 | |
TeslaReportAlgo DEBUG 28#Particle.posmomCov12 = 1.38884 | |
TeslaReportAlgo DEBUG 29#Particle.posmomCov30 = 0.00935216 | |
TeslaReportAlgo DEBUG 3#Particle.referencePoint.x = 0.03768 | |
TeslaReportAlgo DEBUG 30#Particle.posmomCov31 = 0.458313 | |
TeslaReportAlgo DEBUG 31#Particle.posmomCov32 = -21.0977 | |
TeslaReportAlgo DEBUG 32#Particle.posCov00 = 0.00115929 | |
TeslaReportAlgo DEBUG 33#Particle.posCov11 = 0.00122332 | |
TeslaReportAlgo DEBUG 34#Particle.posCov22 = 1.2504 | |
TeslaReportAlgo DEBUG 35#Particle.posCov10 = -0.00050334 | |
TeslaReportAlgo DEBUG 36#Particle.posCov20 = 0.0291017 | |
TeslaReportAlgo DEBUG 37#Particle.posCov21 = -0.0247468 | |
TeslaReportAlgo DEBUG 4#Particle.referencePoint.y = 0.0303111 | |
TeslaReportAlgo DEBUG 5#Particle.slopes.x = 0.0148592 | |
TeslaReportAlgo DEBUG 6#Particle.slopes.y = -0.0159436 | |
TeslaReportAlgo DEBUG 7#Particle.1/p = 7.64979e-06 | |
TeslaReportAlgo DEBUG 8#Particle.conflevel = -1 | |
TeslaReportAlgo DEBUG 9#Particle.massErr = 12.4784 | |
TeslaReportAlgo DEBUG p = 130723 | |
TeslaReportAlgo DEBUG p (par_mom) = 130723 | |
TeslaReportAlgo DEBUG pT (par_mom) = 2848.34 | |
TeslaReportAlgo DEBUG Particle measured mass = 3061.1 | |
TeslaReportAlgo DEBUG Particle CL = -1 | |
TeslaReportAlgo DEBUG Daughter level 1 CLASS ID = 801 | |
TeslaReportAlgo DEBUG 1st Gen. Daughter ID: -13 | |
TeslaReportAlgo DEBUG Basic daughter level 1 has substructure consisting of: | |
TeslaReportAlgo DEBUG 10010 | |
TeslaReportAlgo DEBUG 803 | |
TeslaReportAlgo DEBUG 11050 | |
TeslaReportAlgo DEBUG 10010 | |
TeslaReportAlgo DEBUG Available information | |
TeslaReportAlgo DEBUG 0#Particle.particleID.pid = -13 | |
TeslaReportAlgo DEBUG 1#Particle.measuredMass = 105.658 | |
TeslaReportAlgo DEBUG 10#Particle.momCov00 = 30.5447 | |
TeslaReportAlgo DEBUG 11#Particle.momCov11 = 29.4724 | |
TeslaReportAlgo DEBUG 12#Particle.momCov22 = 59351.4 | |
TeslaReportAlgo DEBUG 13#Particle.momCov33 = 59366.2 | |
TeslaReportAlgo DEBUG 14#Particle.momCov10 = 5.81388 | |
TeslaReportAlgo DEBUG 15#Particle.momCov20 = -762.382 | |
TeslaReportAlgo DEBUG 16#Particle.momCov21 = -558.071 | |
TeslaReportAlgo DEBUG 17#Particle.momCov30 = -762.74 | |
TeslaReportAlgo DEBUG 18#Particle.momCov31 = -558.347 | |
TeslaReportAlgo DEBUG 19#Particle.momCov32 = 59358.8 | |
TeslaReportAlgo DEBUG 2#Particle.referencePoint.z = 67.72 | |
TeslaReportAlgo DEBUG 20#Particle.posmomCov00 = -0.203643 | |
TeslaReportAlgo DEBUG 21#Particle.posmomCov11 = -0.250827 | |
TeslaReportAlgo DEBUG 22#Particle.posmomCov22 = 0 | |
TeslaReportAlgo DEBUG 23#Particle.posmomCov10 = 0.0175263 | |
TeslaReportAlgo DEBUG 24#Particle.posmomCov01 = 0.0135806 | |
TeslaReportAlgo DEBUG 25#Particle.posmomCov20 = -0.295219 | |
TeslaReportAlgo DEBUG 26#Particle.posmomCov02 = 0 | |
TeslaReportAlgo DEBUG 27#Particle.posmomCov21 = 0.0840071 | |
TeslaReportAlgo DEBUG 28#Particle.posmomCov12 = 0 | |
TeslaReportAlgo DEBUG 29#Particle.posmomCov30 = -0.29264 | |
TeslaReportAlgo DEBUG 3#Particle.referencePoint.x = 0.00299374 | |
TeslaReportAlgo DEBUG 30#Particle.posmomCov31 = 0.0861416 | |
TeslaReportAlgo DEBUG 31#Particle.posmomCov32 = 0 | |
TeslaReportAlgo DEBUG 32#Particle.posCov00 = 0.00216281 | |
TeslaReportAlgo DEBUG 33#Particle.posCov11 = 0.00268675 | |
TeslaReportAlgo DEBUG 34#Particle.posCov22 = 0 | |
TeslaReportAlgo DEBUG 35#Particle.posCov10 = -0.000163541 | |
TeslaReportAlgo DEBUG 36#Particle.posCov20 = 0 | |
TeslaReportAlgo DEBUG 37#Particle.posCov21 = 0 | |
TeslaReportAlgo DEBUG 4#Particle.referencePoint.y = 0.0103845 | |
TeslaReportAlgo DEBUG 5#Particle.slopes.x = -0.013274 | |
TeslaReportAlgo DEBUG 6#Particle.slopes.y = -0.00927424 | |
TeslaReportAlgo DEBUG 7#Particle.1/p = 1.9365e-05 | |
TeslaReportAlgo DEBUG 8#Particle.conflevel = 0.250063 | |
TeslaReportAlgo DEBUG 9#Particle.massErr = 0 | |
TeslaReportAlgo DEBUG p = 51639.6 | |
TeslaReportAlgo DEBUG p (par_mom) = 51639.6 | |
TeslaReportAlgo DEBUG pT (par_mom) = 836.086 | |
TeslaReportAlgo DEBUG Particle measured mass = 105.658 | |
TeslaReportAlgo DEBUG Particle CL = 0.250063 | |
TeslaReportAlgo DEBUG Available information (track) | |
TeslaReportAlgo DEBUG 0#Track.firstState.z = 67.72 | |
TeslaReportAlgo DEBUG 1#Track.firstState.x = 0.00299374 | |
TeslaReportAlgo DEBUG 10#Track.flags = 2.19556e+06 | |
TeslaReportAlgo DEBUG 11#Track.lastState.z = 11900 | |
TeslaReportAlgo DEBUG 12#Track.lastState.x = -318.306 | |
TeslaReportAlgo DEBUG 13#Track.lastState.y = -110.177 | |
TeslaReportAlgo DEBUG 14#Track.lastState.tx = -0.0379227 | |
TeslaReportAlgo DEBUG 15#Track.lastState.ty = -0.00933729 | |
TeslaReportAlgo DEBUG 16#Track.lastState.qOverP = 1.93881e-05 | |
TeslaReportAlgo DEBUG 2#Track.firstState.y = 0.0103845 | |
TeslaReportAlgo DEBUG 3#Track.firstState.tx = -0.013274 | |
TeslaReportAlgo DEBUG 4#Track.firstState.ty = -0.00927424 | |
TeslaReportAlgo DEBUG 5#Track.firstState.qOverP = 1.9365e-05 | |
TeslaReportAlgo DEBUG 6#Track.chi2PerDoF = 1.37253 | |
TeslaReportAlgo DEBUG 7#Track.nDoF = 15 | |
TeslaReportAlgo DEBUG 8#Track.Likelihood = 999 | |
TeslaReportAlgo DEBUG 9#Track.GhostProb = 999 | |
TeslaReportAlgo DEBUG MatchVeloMuon = 1 | |
TeslaReportAlgo DEBUG PatForwardTool/LooseForward = 1 | |
TeslaReportAlgo DEBUG Track #chi^{2}/DoF = 1.37253 | |
TeslaReportAlgo DEBUG Track extra for Rep v2, adding last state | |
TeslaReportAlgo DEBUG Track details added | |
TeslaReportAlgo DEBUG Available information (proto) | |
TeslaReportAlgo DEBUG 0#Proto.extraInfo.IsPhoton = -1000 | |
TeslaReportAlgo DEBUG Proto isPhoton = -1000 | |
TeslaReportAlgo DEBUG ProtoParticle details added | |
TeslaReportAlgo DEBUG Available information (muon) | |
TeslaReportAlgo DEBUG 0#Muon.MuonLLMu = -3.65544 | |
TeslaReportAlgo DEBUG 1#Muon.MuonLLBg = -6.4634 | |
TeslaReportAlgo DEBUG 2#Muon.NShared = 0 | |
TeslaReportAlgo DEBUG 3#Muon.Status = 31 | |
TeslaReportAlgo DEBUG 4#Muon.IsMuon = 1 | |
TeslaReportAlgo DEBUG 5#Muon.IsMuonLoose = 1 | |
TeslaReportAlgo DEBUG 6#Muon.IsMuonTight = 1 | |
TeslaReportAlgo DEBUG Muon LLMu = -3.65544 | |
TeslaReportAlgo DEBUG MuonPID details added | |
TeslaReportAlgo DEBUG Available information (track) | |
TeslaReportAlgo DEBUG 0#Track.firstState.z = 9450 | |
TeslaReportAlgo DEBUG 1#Track.firstState.x = -225.728 | |
TeslaReportAlgo DEBUG 10#Track.flags = 167 | |
TeslaReportAlgo DEBUG 11#Track.lastState.z = 9450 | |
TeslaReportAlgo DEBUG 12#Track.lastState.x = -225.728 | |
TeslaReportAlgo DEBUG 13#Track.lastState.y = -87.3034 | |
TeslaReportAlgo DEBUG 14#Track.lastState.tx = -0.0375034 | |
TeslaReportAlgo DEBUG 15#Track.lastState.ty = -0.00933437 | |
TeslaReportAlgo DEBUG 16#Track.lastState.qOverP = 1.93834e-05 | |
TeslaReportAlgo DEBUG 2#Track.firstState.y = -87.3034 | |
TeslaReportAlgo DEBUG 3#Track.firstState.tx = -0.0375034 | |
TeslaReportAlgo DEBUG 4#Track.firstState.ty = -0.00933437 | |
TeslaReportAlgo DEBUG 5#Track.firstState.qOverP = 1.93834e-05 | |
TeslaReportAlgo DEBUG 6#Track.chi2PerDoF = 0 | |
TeslaReportAlgo DEBUG 7#Track.nDoF = 0 | |
TeslaReportAlgo DEBUG 8#Track.Likelihood = 999 | |
TeslaReportAlgo DEBUG 9#Track.GhostProb = 999 | |
TeslaReportAlgo DEBUG Track #chi^{2}/DoF = 0 | |
TeslaReportAlgo DEBUG Track extra for Rep v2, adding last state | |
TeslaReportAlgo DEBUG Track details added | |
TeslaReportAlgo DEBUG Starting to tie pieces together | |
TeslaReportAlgo DEBUG Pieces tied together | |
TeslaReportAlgo DEBUG Daughter level 1 CLASS ID = 801 | |
TeslaReportAlgo DEBUG 1st Gen. Daughter ID: 13 | |
TeslaReportAlgo DEBUG Basic daughter level 1 has substructure consisting of: | |
TeslaReportAlgo DEBUG 10010 | |
TeslaReportAlgo DEBUG 803 | |
TeslaReportAlgo DEBUG 11050 | |
TeslaReportAlgo DEBUG 10010 | |
TeslaReportAlgo DEBUG Available information | |
TeslaReportAlgo DEBUG 0#Particle.particleID.pid = 13 | |
TeslaReportAlgo DEBUG 1#Particle.measuredMass = 105.658 | |
TeslaReportAlgo DEBUG 10#Particle.momCov00 = 202.199 | |
TeslaReportAlgo DEBUG 11#Particle.momCov11 = 100.499 | |
TeslaReportAlgo DEBUG 12#Particle.momCov22 = 172365 | |
TeslaReportAlgo DEBUG 13#Particle.momCov33 = 172617 | |
TeslaReportAlgo DEBUG 14#Particle.momCov10 = -111.88 | |
TeslaReportAlgo DEBUG 15#Particle.momCov20 = 5595.78 | |
TeslaReportAlgo DEBUG 16#Particle.momCov21 = -3507.84 | |
TeslaReportAlgo DEBUG 17#Particle.momCov30 = 5600.52 | |
TeslaReportAlgo DEBUG 18#Particle.momCov31 = -3510.93 | |
TeslaReportAlgo DEBUG 19#Particle.momCov32 = 172491 | |
TeslaReportAlgo DEBUG 2#Particle.referencePoint.z = 65.6037 | |
TeslaReportAlgo DEBUG 20#Particle.posmomCov00 = -0.0770058 | |
TeslaReportAlgo DEBUG 21#Particle.posmomCov11 = -0.161305 | |
TeslaReportAlgo DEBUG 22#Particle.posmomCov22 = 0 | |
TeslaReportAlgo DEBUG 23#Particle.posmomCov10 = -0.0338618 | |
TeslaReportAlgo DEBUG 24#Particle.posmomCov01 = -0.013116 | |
TeslaReportAlgo DEBUG 25#Particle.posmomCov20 = 0.73148 | |
TeslaReportAlgo DEBUG 26#Particle.posmomCov02 = 0 | |
TeslaReportAlgo DEBUG 27#Particle.posmomCov21 = 0.0967152 | |
TeslaReportAlgo DEBUG 28#Particle.posmomCov12 = 0 | |
TeslaReportAlgo DEBUG 29#Particle.posmomCov30 = 0.729055 | |
TeslaReportAlgo DEBUG 3#Particle.referencePoint.x = 0.0552358 | |
TeslaReportAlgo DEBUG 30#Particle.posmomCov31 = 0.0994785 | |
TeslaReportAlgo DEBUG 31#Particle.posmomCov32 = 0 | |
TeslaReportAlgo DEBUG 32#Particle.posCov00 = 0.000627109 | |
TeslaReportAlgo DEBUG 33#Particle.posCov11 = 0.0010187 | |
TeslaReportAlgo DEBUG 34#Particle.posCov22 = 0 | |
TeslaReportAlgo DEBUG 35#Particle.posCov10 = 0.000146406 | |
TeslaReportAlgo DEBUG 36#Particle.posCov20 = 0 | |
TeslaReportAlgo DEBUG 37#Particle.posCov21 = 0 | |
TeslaReportAlgo DEBUG 4#Particle.referencePoint.y = 0.0173921 | |
TeslaReportAlgo DEBUG 5#Particle.slopes.x = 0.0332328 | |
TeslaReportAlgo DEBUG 6#Particle.slopes.y = -0.0203013 | |
TeslaReportAlgo DEBUG 7#Particle.1/p = 1.26393e-05 | |
TeslaReportAlgo DEBUG 8#Particle.conflevel = 0.250063 | |
TeslaReportAlgo DEBUG 9#Particle.massErr = 0 | |
TeslaReportAlgo DEBUG p = 79118.2 | |
TeslaReportAlgo DEBUG p (par_mom) = 79118.2 | |
TeslaReportAlgo DEBUG pT (par_mom) = 3078.77 | |
TeslaReportAlgo DEBUG Particle measured mass = 105.658 | |
TeslaReportAlgo DEBUG Particle CL = 0.250063 | |
TeslaReportAlgo DEBUG Available information (track) | |
TeslaReportAlgo DEBUG 0#Track.firstState.z = 65.6037 | |
TeslaReportAlgo DEBUG 1#Track.firstState.x = 0.0552358 | |
TeslaReportAlgo DEBUG 10#Track.flags = 2.19556e+06 | |
TeslaReportAlgo DEBUG 11#Track.lastState.z = 11900 | |
TeslaReportAlgo DEBUG 12#Track.lastState.x = 497.407 | |
TeslaReportAlgo DEBUG 13#Track.lastState.y = -240.054 | |
TeslaReportAlgo DEBUG 14#Track.lastState.tx = 0.0492189 | |
TeslaReportAlgo DEBUG 15#Track.lastState.ty = -0.0202682 | |
TeslaReportAlgo DEBUG 16#Track.lastState.qOverP = -1.26481e-05 | |
TeslaReportAlgo DEBUG 2#Track.firstState.y = 0.0173921 | |
TeslaReportAlgo DEBUG 3#Track.firstState.tx = 0.0332328 | |
TeslaReportAlgo DEBUG 4#Track.firstState.ty = -0.0203013 | |
TeslaReportAlgo DEBUG 5#Track.firstState.qOverP = -1.26393e-05 | |
TeslaReportAlgo DEBUG 6#Track.chi2PerDoF = 0.761734 | |
TeslaReportAlgo DEBUG 7#Track.nDoF = 27 | |
TeslaReportAlgo DEBUG 8#Track.Likelihood = 999 | |
TeslaReportAlgo DEBUG 9#Track.GhostProb = 999 | |
TeslaReportAlgo DEBUG MatchVeloMuon = 1 | |
TeslaReportAlgo DEBUG PatForwardTool/LooseForward = 1 | |
TeslaReportAlgo DEBUG Track #chi^{2}/DoF = 0.761734 | |
TeslaReportAlgo DEBUG Track extra for Rep v2, adding last state | |
TeslaReportAlgo DEBUG Track details added | |
TeslaReportAlgo DEBUG Available information (proto) | |
TeslaReportAlgo DEBUG 0#Proto.extraInfo.IsPhoton = -1000 | |
TeslaReportAlgo DEBUG Proto isPhoton = -1000 | |
TeslaReportAlgo DEBUG ProtoParticle details added | |
TeslaReportAlgo DEBUG Available information (muon) | |
TeslaReportAlgo DEBUG 0#Muon.MuonLLMu = -0.367447 | |
TeslaReportAlgo DEBUG 1#Muon.MuonLLBg = -4.84853 | |
TeslaReportAlgo DEBUG 2#Muon.NShared = 0 | |
TeslaReportAlgo DEBUG 3#Muon.Status = 31 | |
TeslaReportAlgo DEBUG 4#Muon.IsMuon = 1 | |
TeslaReportAlgo DEBUG 5#Muon.IsMuonLoose = 1 | |
TeslaReportAlgo DEBUG 6#Muon.IsMuonTight = 1 | |
TeslaReportAlgo DEBUG Muon LLMu = -0.367447 | |
TeslaReportAlgo DEBUG MuonPID details added | |
TeslaReportAlgo DEBUG Available information (track) | |
TeslaReportAlgo DEBUG 0#Track.firstState.z = 9450 | |
TeslaReportAlgo DEBUG 1#Track.firstState.x = 377.034 | |
TeslaReportAlgo DEBUG 10#Track.flags = 167 | |
TeslaReportAlgo DEBUG 11#Track.lastState.z = 9450 | |
TeslaReportAlgo DEBUG 12#Track.lastState.x = 377.034 | |
TeslaReportAlgo DEBUG 13#Track.lastState.y = -190.396 | |
TeslaReportAlgo DEBUG 14#Track.lastState.tx = 0.0489491 | |
TeslaReportAlgo DEBUG 15#Track.lastState.ty = -0.0202691 | |
TeslaReportAlgo DEBUG 16#Track.lastState.qOverP = -1.26461e-05 | |
TeslaReportAlgo DEBUG 2#Track.firstState.y = -190.396 | |
TeslaReportAlgo DEBUG 3#Track.firstState.tx = 0.0489491 | |
TeslaReportAlgo DEBUG 4#Track.firstState.ty = -0.0202691 | |
TeslaReportAlgo DEBUG 5#Track.firstState.qOverP = -1.26461e-05 | |
TeslaReportAlgo DEBUG 6#Track.chi2PerDoF = 0 | |
TeslaReportAlgo DEBUG 7#Track.nDoF = 0 | |
TeslaReportAlgo DEBUG 8#Track.Likelihood = 999 | |
TeslaReportAlgo DEBUG 9#Track.GhostProb = 999 | |
TeslaReportAlgo DEBUG Track #chi^{2}/DoF = 0 | |
TeslaReportAlgo DEBUG Track extra for Rep v2, adding last state | |
TeslaReportAlgo DEBUG Track details added | |
TeslaReportAlgo DEBUG Starting to tie pieces together | |
TeslaReportAlgo DEBUG Pieces tied together | |
TeslaReportAlgo DEBUG Daughter level 1 CLASS ID = 802 | |
TeslaReportAlgo DEBUG Available information (vertex) | |
TeslaReportAlgo DEBUG 0#Vertex.chi2 = 0.0122348 | |
TeslaReportAlgo DEBUG 1#Vertex.ndf = 1 | |
TeslaReportAlgo DEBUG 10#Vertex.cov20 = 0.0291017 | |
TeslaReportAlgo DEBUG 11#Vertex.cov21 = -0.0247468 | |
TeslaReportAlgo DEBUG 2#Vertex.position.x = 0.03768 | |
TeslaReportAlgo DEBUG 3#Vertex.position.y = 0.0303111 | |
TeslaReportAlgo DEBUG 4#Vertex.position.z = 65.0597 | |
TeslaReportAlgo DEBUG 5#Vertex.technique = 0 | |
TeslaReportAlgo DEBUG 6#Vertex.cov00 = 0.00115929 | |
TeslaReportAlgo DEBUG 7#Vertex.cov11 = 0.00122332 | |
TeslaReportAlgo DEBUG 8#Vertex.cov22 = 1.2504 | |
TeslaReportAlgo DEBUG 9#Vertex.cov10 = -0.00050334 | |
TeslaReportAlgo DEBUG Decay vertex chi2 = 0.0122348 | |
TeslaReportAlgo DEBUG Setting mother decay vertex | |
TeslaReportAlgo DEBUG End of algorithm execution | |
TeslaReportAlgo DEBUG ==> Execute | |
TeslaReportAlgo... DEBUG SelReports version check requested | |
TeslaReportAlgo... DEBUG The object of type 'LHCb::HltSelReports*' has been retrieved from TS at address 'Hlt2/SelReports' | |
TeslaReportAlgo... DEBUG Examining mother report | |
TeslaReportAlgo... DEBUG Mother report is of a particle | |
TeslaReportAlgo... DEBUG ReportCheckTool finds verision 2 | |
TeslaReportAlgo DEBUG VersionNum = 2 | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Particle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Particles' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::ProtoParticle,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Protos' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Vertex,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Vertices' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::Track,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/Tracks' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::RichPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/RichPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::MuonPID,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Tesla/MuonPIDs' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'KeyedContainer<LHCb::VertexBase,Containers::KeyedObjectManager<Containers::hashmap> >' is registered in TS at address 'Rec/Vertex/Primary' | |
TeslaReportAlgo DEBUG TeslaReportAlgo:: The object of type 'LHCb::Relation1D<LHCb::Particle,LHCb::VertexBase>' is registered in TS at address 'Tesla/Particle2VertexRelations' | |
TeslaReportAlgo DEBUG The object of type 'LHCb::HltVertexReports*' has been retrieved from TS at address 'Hlt1/VertexReports' | |
TeslaReportAlgo DEBUG Available vertex reports: | |
TeslaReportAlgo DEBUG PV3D | |
TeslaReportAlgo DEBUG ProtoPV3D | |
TeslaReportAlgo DEBUG Vertex chi2= 56.3838, ndf =71 | |
TeslaReportAlgo DEBUG Vertex key= 0 | |
TeslaReportAlgo DEBUG The object of type 'LHCb::HltSelReports*' has been retrieved from TS at address 'Hlt2/SelReports' | |
TeslaReportAlgo DEBUG Available reports: | |
TeslaReportAlgo DEBUG Hlt2DiMuonDecision | |
TeslaReportAlgo DEBUG Hlt2DiMuonJPsiDecision | |
TeslaReportAlgo DEBUG Hlt2Global | |
TeslaReportAlgo DEBUG Hlt2SingleMuonLowPTDecision | |
TeslaReportAlgo DEBUG Required line has been fired | |
TeslaReportAlgo DEBUG Reference: | |
TeslaReportAlgo DEBUG Particle class ID = 801 | |
TeslaReportAlgo DEBUG Track class ID = 10010 | |
TeslaReportAlgo DEBUG RecVertex class ID = 10030 | |
TeslaReportAlgo DEBUG Vertex class ID = 802 | |
TeslaReportAlgo DEBUG ProtoParticle class ID = 803 | |
TeslaReportAlgo DEBUG { summarizedObjectCLID : 1 numericalInfo : { 0#SelectionID:50201 , } substructure : { 14:801 , } lhcbIDs : { } } | |
TeslaReportAlgo DEBUG MOTHER CLASS ID = 1 | |
TeslaReportAlgo DEBUG LHCbIDs.size() = 0 | |
TeslaReportAlgo DEBUG Number of triggered candidates = 1 | |
TeslaReportAlgo DEBUG [0xb568500] | |
TeslaReportAlgo DEBUG Starting loop over triggered candidates | |
TeslaReportAlgo DEBUG Mother object CLASS ID = 801 | |
TeslaReportAlgo DEBUG Found mother with ID: 443 | |
TeslaReportAlgo DEBUG Mother has substructure consisting of: | |
TeslaReportAlgo DEBUG 801 | |
TeslaReportAlgo DEBUG 801 | |
TeslaReportAlgo DEBUG 802 | |
TeslaReportAlgo DEBUG Available information | |
TeslaReportAlgo DEBUG 0#Particle.particleID.pid = 443 | |
TeslaReportAlgo DEBUG 1#Particle.measuredMass = 3092.21 | |
TeslaReportAlgo DEBUG 10#Particle.momCov00 = 52.2448 | |
TeslaReportAlgo DEBUG 11#Particle.momCov11 = 653.617 | |
TeslaReportAlgo DEBUG 12#Particle.momCov22 = 59228.2 | |
TeslaReportAlgo DEBUG 13#Particle.momCov33 = 59848.2 | |
TeslaReportAlgo DEBUG 14#Particle.momCov10 = -69.5433 | |
TeslaReportAlgo DEBUG 15#Particle.momCov20 = 506.1 | |
TeslaReportAlgo DEBUG 16#Particle.momCov21 = -5663.67 | |
TeslaReportAlgo DEBUG 17#Particle.momCov30 = 510.351 | |
TeslaReportAlgo DEBUG 18#Particle.momCov31 = -5701.43 | |
TeslaReportAlgo DEBUG 19#Particle.momCov32 = 59537.1 | |
TeslaReportAlgo DEBUG 2#Particle.referencePoint.z = 2.2387 | |
TeslaReportAlgo DEBUG 20#Particle.posmomCov00 = -0.0909198 | |
TeslaReportAlgo DEBUG 21#Particle.posmomCov11 = -0.229992 | |
TeslaReportAlgo DEBUG 22#Particle.posmomCov22 = 0.273182 | |
TeslaReportAlgo DEBUG 23#Particle.posmomCov10 = 0.0368003 | |
TeslaReportAlgo DEBUG 24#Particle.posmomCov01 = 0.0400522 | |
TeslaReportAlgo DEBUG 25#Particle.posmomCov20 = -0.228765 | |
TeslaReportAlgo DEBUG 26#Particle.posmomCov02 = -0.418057 | |
TeslaReportAlgo DEBUG 27#Particle.posmomCov21 = -0.0601002 | |
TeslaReportAlgo DEBUG 28#Particle.posmomCov12 = 1.61611 | |
TeslaReportAlgo DEBUG 29#Particle.posmomCov30 = -0.230313 | |
TeslaReportAlgo DEBUG 3#Particle.referencePoint.x = -0.00349078 | |
TeslaReportAlgo DEBUG 30#Particle.posmomCov31 = -0.0542934 | |
TeslaReportAlgo DEBUG 31#Particle.posmomCov32 = 0.267388 | |
TeslaReportAlgo DEBUG 32#Particle.posCov00 = 0.000225858 | |
TeslaReportAlgo DEBUG 33#Particle.posCov11 = 0.00304341 | |
TeslaReportAlgo DEBUG 34#Particle.posCov22 = 0.245727 | |
TeslaReportAlgo DEBUG 35#Particle.posCov10 = -0.000259367 | |
TeslaReportAlgo DEBUG 36#Particle.posCov20 = 0.00251836 | |
TeslaReportAlgo DEBUG 37#Particle.posCov21 = -0.0268119 | |
TeslaReportAlgo DEBUG 4#Particle.referencePoint.y = -0.0595497 | |
TeslaReportAlgo DEBUG 5#Particle.slopes.x = 0.00378548 | |
TeslaReportAlgo DEBUG 6#Particle.slopes.y = -0.0842471 | |
TeslaReportAlgo DEBUG 7#Particle.1/p = 1.30114e-05 | |
TeslaReportAlgo DEBUG 8#Particle.conflevel = -1 | |
TeslaReportAlgo DEBUG 9#Particle.massErr = 11.7329 | |
TeslaReportAlgo DEBUG p = 76855.9 | |
TeslaReportAlgo DEBUG p (par_mom) = 76855.9 | |
TeslaReportAlgo DEBUG pT (par_mom) = 6458.49 | |
TeslaReportAlgo DEBUG Particle measured mass = 3092.21 | |
TeslaReportAlgo DEBUG Particle CL = -1 | |
TeslaReportAlgo DEBUG Daughter level 1 CLASS ID = 801 | |
TeslaReportAlgo DEBUG 1st Gen. Daughter ID: -13 | |
TeslaReportAlgo DEBUG Basic daughter level 1 has substructure consisting of: | |
TeslaReportAlgo DEBUG 10010 | |
TeslaReportAlgo DEBUG 803 | |
TeslaReportAlgo DEBUG 11050 | |
TeslaReportAlgo DEBUG 10010 | |
TeslaReportAlgo DEBUG Available information | |
TeslaReportAlgo DEBUG 0#Particle.particleID.pid = -13 | |
TeslaReportAlgo DEBUG 1#Particle.measuredMass = 105.658 | |
TeslaReportAlgo DEBUG 10#Particle.momCov00 = 33.7391 | |
TeslaReportAlgo DEBUG 11#Particle.momCov11 = 614.66 | |
TeslaReportAlgo DEBUG 12#Particle.momCov22 = 45157.5 | |
TeslaReportAlgo DEBUG 13#Particle.momCov33 = 45760.3 | |
TeslaReportAlgo DEBUG 14#Particle.momCov10 = -70.2734 | |
TeslaReportAlgo DEBUG 15#Particle.momCov20 = 621.826 | |
TeslaReportAlgo DEBUG 16#Particle.momCov21 = -5180.58 | |
TeslaReportAlgo DEBUG 17#Particle.momCov30 = 626.142 | |
TeslaReportAlgo DEBUG 18#Particle.momCov31 = -5217.34 | |
TeslaReportAlgo DEBUG 19#Particle.momCov32 = 45457.8 | |
TeslaReportAlgo DEBUG 2#Particle.referencePoint.z = 1.72894 | |
TeslaReportAlgo DEBUG 20#Particle.posmomCov00 = -0.0721905 | |
TeslaReportAlgo DEBUG 21#Particle.posmomCov11 = -0.0428494 | |
TeslaReportAlgo DEBUG 22#Particle.posmomCov22 = 0 | |
TeslaReportAlgo DEBUG 23#Particle.posmomCov10 = 0.0242051 | |
TeslaReportAlgo DEBUG 24#Particle.posmomCov01 = -0.00480308 | |
TeslaReportAlgo DEBUG 25#Particle.posmomCov20 = -0.252847 | |
TeslaReportAlgo DEBUG 26#Particle.posmomCov02 = 0 | |
TeslaReportAlgo DEBUG 27#Particle.posmomCov21 = -0.0334031 | |
TeslaReportAlgo DEBUG 28#Particle.posmomCov12 = 0 | |
TeslaReportAlgo DEBUG 29#Particle.posmomCov30 = -0.254807 | |
TeslaReportAlgo DEBUG 3#Particle.referencePoint.x = -0.010132 | |
TeslaReportAlgo DEBUG 30#Particle.posmomCov31 = -0.0283474 | |
TeslaReportAlgo DEBUG 31#Particle.posmomCov32 = 0 | |
TeslaReportAlgo DEBUG 32#Particle.posCov00 = 0.000227835 | |
TeslaReportAlgo DEBUG 33#Particle.posCov11 = 0.000128608 | |
TeslaReportAlgo DEBUG 34#Particle.posCov22 = 0 | |
TeslaReportAlgo DEBUG 35#Particle.posCov10 = 1.86878e-05 | |
TeslaReportAlgo DEBUG 36#Particle.posCov20 = 0 | |
TeslaReportAlgo DEBUG 37#Particle.posCov21 = 0 | |
TeslaReportAlgo DEBUG 4#Particle.referencePoint.y = -0.00106338 | |
TeslaReportAlgo DEBUG 5#Particle.slopes.x = 0.0121229 | |
TeslaReportAlgo DEBUG 6#Particle.slopes.y = -0.114941 | |
TeslaReportAlgo DEBUG 7#Particle.1/p = 2.10178e-05 | |
TeslaReportAlgo DEBUG 8#Particle.conflevel = 0.250063 | |
TeslaReportAlgo DEBUG 9#Particle.massErr = 0 | |
TeslaReportAlgo DEBUG p = 47578.7 | |
TeslaReportAlgo DEBUG p (par_mom) = 47578.7 | |
TeslaReportAlgo DEBUG pT (par_mom) = 5462.72 | |
TeslaReportAlgo DEBUG Particle measured mass = 105.658 | |
TeslaReportAlgo DEBUG Particle CL = 0.250063 | |
TeslaReportAlgo DEBUG Available information (track) | |
TeslaReportAlgo DEBUG 0#Track.firstState.z = 1.72894 | |
TeslaReportAlgo DEBUG 1#Track.firstState.x = -0.010132 | |
TeslaReportAlgo DEBUG 10#Track.flags = 2.19556e+06 | |
TeslaReportAlgo DEBUG 11#Track.lastState.z = 11900 | |
TeslaReportAlgo DEBUG 12#Track.lastState.x = -32.0231 | |
TeslaReportAlgo DEBUG 13#Track.lastState.y = -1365.77 | |
TeslaReportAlgo DEBUG 14#Track.lastState.tx = -0.0148339 | |
TeslaReportAlgo DEBUG 15#Track.lastState.ty = -0.114761 | |
TeslaReportAlgo DEBUG 16#Track.lastState.qOverP = 2.10473e-05 | |
TeslaReportAlgo DEBUG 2#Track.firstState.y = -0.00106338 | |
TeslaReportAlgo DEBUG 3#Track.firstState.tx = 0.0121229 | |
TeslaReportAlgo DEBUG 4#Track.firstState.ty = -0.114941 | |
TeslaReportAlgo DEBUG 5#Track.firstState.qOverP = 2.10178e-05 | |
TeslaReportAlgo DEBUG 6#Track.chi2PerDoF = 1.27481 | |
TeslaReportAlgo DEBUG 7#Track.nDoF = 33 | |
TeslaReportAlgo DEBUG 8#Track.Likelihood = 999 | |
TeslaReportAlgo DEBUG 9#Track.GhostProb = 999 | |
TeslaReportAlgo DEBUG MatchVeloMuon = 1 | |
TeslaReportAlgo DEBUG PatForwardTool/LooseForward = 1 | |
TeslaReportAlgo DEBUG Track #chi^{2}/DoF = 1.27481 | |
TeslaReportAlgo DEBUG Track extra for Rep v2, adding last state | |
TeslaReportAlgo DEBUG Track details added | |
TeslaReportAlgo DEBUG Available information (proto) | |
TeslaReportAlgo DEBUG 0#Proto.extraInfo.IsPhoton = -1000 | |
TeslaReportAlgo DEBUG Proto isPhoton = -1000 | |
TeslaReportAlgo DEBUG ProtoParticle details added | |
TeslaReportAlgo DEBUG Available information (muon) | |
TeslaReportAlgo DEBUG 0#Muon.MuonLLMu = -0.160873 | |
TeslaReportAlgo DEBUG 1#Muon.MuonLLBg = -4.35456 | |
TeslaReportAlgo DEBUG 2#Muon.NShared = 0 | |
TeslaReportAlgo DEBUG 3#Muon.Status = 31 | |
TeslaReportAlgo DEBUG 4#Muon.IsMuon = 1 | |
TeslaReportAlgo DEBUG 5#Muon.IsMuonLoose = 1 | |
TeslaReportAlgo DEBUG 6#Muon.IsMuonTight = 1 | |
TeslaReportAlgo DEBUG Muon LLMu = -0.160873 | |
TeslaReportAlgo DEBUG MuonPID details added | |
TeslaReportAlgo DEBUG Available information (track) | |
TeslaReportAlgo DEBUG 0#Track.firstState.z = 9450 | |
TeslaReportAlgo DEBUG 1#Track.firstState.x = 4.07419 | |
TeslaReportAlgo DEBUG 10#Track.flags = 167 | |
TeslaReportAlgo DEBUG 11#Track.lastState.z = 9450 | |
TeslaReportAlgo DEBUG 12#Track.lastState.x = 4.07419 | |
TeslaReportAlgo DEBUG 13#Track.lastState.y = -1084.6 | |
TeslaReportAlgo DEBUG 14#Track.lastState.tx = -0.0145185 | |
TeslaReportAlgo DEBUG 15#Track.lastState.ty = -0.114764 | |
TeslaReportAlgo DEBUG 16#Track.lastState.qOverP = 2.10419e-05 | |
TeslaReportAlgo DEBUG 2#Track.firstState.y = -1084.6 | |
TeslaReportAlgo DEBUG 3#Track.firstState.tx = -0.0145185 | |
TeslaReportAlgo DEBUG 4#Track.firstState.ty = -0.114764 | |
TeslaReportAlgo DEBUG 5#Track.firstState.qOverP = 2.10419e-05 | |
TeslaReportAlgo DEBUG 6#Track.chi2PerDoF = 0 | |
TeslaReportAlgo DEBUG 7#Track.nDoF = 0 | |
TeslaReportAlgo DEBUG 8#Track.Likelihood = 999 | |
TeslaReportAlgo DEBUG 9#Track.GhostProb = 999 | |
TeslaReportAlgo DEBUG Track #chi^{2}/DoF = 0 | |
TeslaReportAlgo DEBUG Track extra for Rep v2, adding last state | |
TeslaReportAlgo DEBUG Track details added | |
TeslaReportAlgo DEBUG Starting to tie pieces together | |
TeslaReportAlgo DEBUG Pieces tied together | |
TeslaReportAlgo DEBUG Daughter level 1 CLASS ID = 801 | |
TeslaReportAlgo DEBUG 1st Gen. Daughter ID: 13 | |
TeslaReportAlgo DEBUG Basic daughter level 1 has substructure consisting of: | |
TeslaReportAlgo DEBUG 10010 | |
TeslaReportAlgo DEBUG 803 | |
TeslaReportAlgo DEBUG 11050 | |
TeslaReportAlgo DEBUG 10010 | |
TeslaReportAlgo DEBUG Available information | |
TeslaReportAlgo DEBUG 0#Particle.particleID.pid = 13 | |
TeslaReportAlgo DEBUG 1#Particle.measuredMass = 105.658 | |
TeslaReportAlgo DEBUG 10#Particle.momCov00 = 26.1496 | |
TeslaReportAlgo DEBUG 11#Particle.momCov11 = 40.8372 | |
TeslaReportAlgo DEBUG 12#Particle.momCov22 = 14086.4 | |
TeslaReportAlgo DEBUG 13#Particle.momCov33 = 14104.3 | |
TeslaReportAlgo DEBUG 14#Particle.momCov10 = 4.52145 | |
TeslaReportAlgo DEBUG 15#Particle.momCov20 = -126.672 | |
TeslaReportAlgo DEBUG 16#Particle.momCov21 = -488.514 | |
TeslaReportAlgo DEBUG 17#Particle.momCov30 = -126.998 | |
TeslaReportAlgo DEBUG 18#Particle.momCov31 = -489.655 | |
TeslaReportAlgo DEBUG 19#Particle.momCov32 = 14095.3 | |
TeslaReportAlgo DEBUG 2#Particle.referencePoint.z = 0.696222 | |
TeslaReportAlgo DEBUG 20#Particle.posmomCov00 = -0.200909 | |
TeslaReportAlgo DEBUG 21#Particle.posmomCov11 = -0.188553 | |
TeslaReportAlgo DEBUG 22#Particle.posmomCov22 = 0 | |
TeslaReportAlgo DEBUG 23#Particle.posmomCov10 = 0.000527499 | |
TeslaReportAlgo DEBUG 24#Particle.posmomCov01 = -0.00171106 | |
TeslaReportAlgo DEBUG 25#Particle.posmomCov20 = -0.0767778 | |
TeslaReportAlgo DEBUG 26#Particle.posmomCov02 = 0 | |
TeslaReportAlgo DEBUG 27#Particle.posmomCov21 = -0.0116888 | |
TeslaReportAlgo DEBUG 28#Particle.posmomCov12 = 0 | |
TeslaReportAlgo DEBUG 29#Particle.posmomCov30 = -0.0748055 | |
TeslaReportAlgo DEBUG 3#Particle.referencePoint.x = 0.0148772 | |
TeslaReportAlgo DEBUG 30#Particle.posmomCov31 = -0.00511254 | |
TeslaReportAlgo DEBUG 31#Particle.posmomCov32 = 0 | |
TeslaReportAlgo DEBUG 32#Particle.posCov00 = 0.00175101 | |
TeslaReportAlgo DEBUG 33#Particle.posCov11 = 0.00159268 | |
TeslaReportAlgo DEBUG 34#Particle.posCov22 = 0 | |
TeslaReportAlgo DEBUG 35#Particle.posCov10 = 2.4514e-05 | |
TeslaReportAlgo DEBUG 36#Particle.posCov20 = 0 | |
TeslaReportAlgo DEBUG 37#Particle.posCov21 = 0 | |
TeslaReportAlgo DEBUG 4#Particle.referencePoint.y = -0.00501412 | |
TeslaReportAlgo DEBUG 5#Particle.slopes.x = -0.00966307 | |
TeslaReportAlgo DEBUG 6#Particle.slopes.y = -0.0347717 | |
TeslaReportAlgo DEBUG 7#Particle.1/p = 3.40839e-05 | |
TeslaReportAlgo DEBUG 8#Particle.conflevel = 0.250063 | |
TeslaReportAlgo DEBUG 9#Particle.massErr = 0 | |
TeslaReportAlgo DEBUG p = 29339.4 | |
TeslaReportAlgo DEBUG p (par_mom) = 29339.4 | |
TeslaReportAlgo DEBUG pT (par_mom) = 1058.15 | |
TeslaReportAlgo DEBUG Particle measured mass = 105.658 | |
TeslaReportAlgo DEBUG Particle CL = 0.250063 | |
TeslaReportAlgo DEBUG Available information (track) | |
TeslaReportAlgo DEBUG 0#Track.firstState.z = 0.696222 | |
TeslaReportAlgo DEBUG 1#Track.firstState.x = 0.0148772 | |
TeslaReportAlgo DEBUG 10#Track.flags = 2.19556e+06 | |
TeslaReportAlgo DEBUG 11#Track.lastState.z = 11900 | |
TeslaReportAlgo DEBUG 12#Track.lastState.x = 163.327 | |
TeslaReportAlgo DEBUG 13#Track.lastState.y = -413.868 | |
TeslaReportAlgo DEBUG 14#Track.lastState.tx = 0.0332805 | |
TeslaReportAlgo DEBUG 15#Track.lastState.ty = -0.0346991 | |
TeslaReportAlgo DEBUG 16#Track.lastState.qOverP = -3.4158e-05 | |
TeslaReportAlgo DEBUG 2#Track.firstState.y = -0.00501412 | |
TeslaReportAlgo DEBUG 3#Track.firstState.tx = -0.00966307 | |
TeslaReportAlgo DEBUG 4#Track.firstState.ty = -0.0347717 | |
TeslaReportAlgo DEBUG 5#Track.firstState.qOverP = -3.40839e-05 | |
TeslaReportAlgo DEBUG 6#Track.chi2PerDoF = 0.780619 | |
TeslaReportAlgo DEBUG 7#Track.nDoF = 33 | |
TeslaReportAlgo DEBUG 8#Track.Likelihood = 999 | |
TeslaReportAlgo DEBUG 9#Track.GhostProb = 999 | |
TeslaReportAlgo DEBUG MatchVeloMuon = 1 | |
TeslaReportAlgo DEBUG PatForwardTool/LooseForward = 1 | |
TeslaReportAlgo DEBUG Track #chi^{2}/DoF = 0.780619 | |
TeslaReportAlgo DEBUG Track extra for Rep v2, adding last state | |
TeslaReportAlgo DEBUG Track details added | |
TeslaReportAlgo DEBUG Available information (proto) | |
TeslaReportAlgo DEBUG 0#Proto.extraInfo.IsPhoton = -1000 | |
TeslaReportAlgo DEBUG Proto isPhoton = -1000 | |
TeslaReportAlgo DEBUG ProtoParticle details added | |
TeslaReportAlgo DEBUG Available information (muon) | |
TeslaReportAlgo DEBUG 0#Muon.MuonLLMu = -3.23247 | |
TeslaReportAlgo DEBUG 1#Muon.MuonLLBg = -6.30444 | |
TeslaReportAlgo DEBUG 2#Muon.NShared = 0 | |
TeslaReportAlgo DEBUG 3#Muon.Status = 31 | |
TeslaReportAlgo DEBUG 4#Muon.IsMuon = 1 | |
TeslaReportAlgo DEBUG 5#Muon.IsMuonLoose = 1 | |
TeslaReportAlgo DEBUG 6#Muon.IsMuonTight = 1 | |
TeslaReportAlgo DEBUG Muon LLMu = -3.23247 | |
TeslaReportAlgo DEBUG MuonPID details added | |
TeslaReportAlgo DEBUG Available information (track) | |
TeslaReportAlgo DEBUG 0#Track.firstState.z = 9450 | |
TeslaReportAlgo DEBUG 1#Track.firstState.x = 82.3605 | |
TeslaReportAlgo DEBUG 10#Track.flags = 167 | |
TeslaReportAlgo DEBUG 11#Track.lastState.z = 9450 | |
TeslaReportAlgo DEBUG 12#Track.lastState.x = 82.3605 | |
TeslaReportAlgo DEBUG 13#Track.lastState.y = -328.85 | |
TeslaReportAlgo DEBUG 14#Track.lastState.tx = 0.0325605 | |
TeslaReportAlgo DEBUG 15#Track.lastState.ty = -0.0347067 | |
TeslaReportAlgo DEBUG 16#Track.lastState.qOverP = -3.41442e-05 | |
TeslaReportAlgo DEBUG 2#Track.firstState.y = -328.85 | |
TeslaReportAlgo DEBUG 3#Track.firstState.tx = 0.0325605 | |
TeslaReportAlgo DEBUG 4#Track.firstState.ty = -0.0347067 | |
TeslaReportAlgo DEBUG 5#Track.firstState.qOverP = -3.41442e-05 | |
TeslaReportAlgo DEBUG 6#Track.chi2PerDoF = 0 | |
TeslaReportAlgo DEBUG 7#Track.nDoF = 0 | |
TeslaReportAlgo DEBUG 8#Track.Likelihood = 999 | |
TeslaReportAlgo DEBUG 9#Track.GhostProb = 999 | |
TeslaReportAlgo DEBUG Track #chi^{2}/DoF = 0 | |
TeslaReportAlgo DEBUG Track extra for Rep v2, adding last state | |
TeslaReportAlgo DEBUG Track details added | |
TeslaReportAlgo DEBUG Starting to tie pieces together | |
TeslaReportAlgo DEBUG Pieces tied together | |
TeslaReportAlgo DEBUG Daughter level 1 CLASS ID = 802 | |
TeslaReportAlgo DEBUG Available information (vertex) | |
TeslaReportAlgo DEBUG 0#Vertex.chi2 = 0.0083721 | |
TeslaReportAlgo DEBUG 1#Vertex.ndf = 1 | |
TeslaReportAlgo DEBUG 10#Vertex.cov20 = 0.00251836 | |
TeslaReportAlgo DEBUG 11#Vertex.cov21 = -0.0268119 | |
TeslaReportAlgo DEBUG 2#Vertex.position.x = -0.00349078 | |
TeslaReportAlgo DEBUG 3#Vertex.position.y = -0.0595497 | |
TeslaReportAlgo DEBUG 4#Vertex.position.z = 2.2387 | |
TeslaReportAlgo DEBUG 5#Vertex.technique = 0 | |
TeslaReportAlgo DEBUG 6#Vertex.cov00 = 0.000225858 | |
TeslaReportAlgo DEBUG 7#Vertex.cov11 = 0.00304341 | |
TeslaReportAlgo DEBUG 8#Vertex.cov22 = 0.245727 | |
TeslaReportAlgo DEBUG 9#Vertex.cov10 = -0.000259367 | |
TeslaReportAlgo DEBUG Decay vertex chi2 = 0.0083721 | |
TeslaReportAlgo DEBUG Setting mother decay vertex | |
TeslaReportAlgo DEBUG End of algorithm execution | |
EventLoopMgr INFO No more events in event selection | |
TeslaReportAlgo DEBUG Property update for OutputLevel : new value = 1 | |
ApplicationMgr INFO Application Manager Stopped successfully | |
Hlt2SelReportsD...SUCCESS Exceptions/Errors/Warnings/Infos Statistics : 0/0/1/0 | |
Hlt2SelReportsD...SUCCESS #WARNINGS = 30 Message = ' No appropriate HltSelReports RawBank in RawEvent. Quiting. ' | |
Hlt1VertexRepor...SUCCESS Exceptions/Errors/Warnings/Infos Statistics : 0/0/1/0 | |
Hlt1VertexRepor...SUCCESS #WARNINGS = 11 Message = ' No HltVertexReports RawBank for requested SourceID in RawEvent. Quiting. ' | |
TeslaReportAlgo DEBUG Finalize base class GaudiAlgorithm | |
TeslaReportAlgo DEBUG adding counters to CounterSummarySvc | |
TeslaReportAlgo DEBUG Tools to release : TeslaReportAlgo.LoKi::DistanceCalculator TeslaReportAlgo.ReportCheckTool | |
TeslaReportAlgo DEBUG Releasing tool 'TeslaReportAlgo.ReportCheckTool' | |
TeslaReportAlgo DEBUG The tool 'TeslaReportAlgo.ReportCheckTool' of type 'ReportCheckTool' is released | |
TeslaReportAlgo DEBUG Releasing tool 'TeslaReportAlgo.LoKi::DistanceCalculator' | |
TeslaReportAlgo DEBUG The tool 'TeslaReportAlgo.LoKi::DistanceCalculator' of type 'LoKi::DistanceCalculator' is released | |
TeslaReportAlgo DEBUG Services to release : | |
Writer INFO Events output: 50 | |
EventLoopMgr INFO Histograms converted successfully according to request. | |
LoKiSvc SUCCESS | |
Good Bye Good Bye Good Bye Good Bye Good Bye Good Bye Good Bye Good Bye Good Bye Good Bye Good Bye Good | |
Good Bye Good Bye Good Bye Good Bye Good Bye Good Bye Good Bye Good Bye Good Bye Good Bye Good Bye Good | |
LoKi LoKi | |
LoKi LoKi | |
LoKi Good Bye from LoKi! LoKi | |
LoKi LoKi | |
LoKi (LOops & KInematics) LoKi | |
LoKi LoKi | |
LoKi Smart & Friendly C++ Physics Analysis Tool Kit LoKi | |
LoKi LoKi | |
LoKi LoKi | |
LoKi LoKi mailing list ('LoKi-club') : [email protected] LoKi | |
LoKi Comments, suggestions, criticism, ideas, questions and requests are *ALWAYS* welcome LoKi | |
LoKi LoKi | |
Good Bye Good Bye Good Bye Good Bye Good Bye Good Bye Good Bye Good Bye Good Bye Good Bye Good Bye Good | |
Good Bye Good Bye Good Bye Good Bye Good Bye Good Bye Good Bye Good Bye Good Bye Good Bye Good Bye Good | |
ToolSvc INFO Removing all tools created by ToolSvc | |
TeslaReportAlgo... DEBUG ==> Finalize the base class GaudiTool | |
TeslaReportAlgo... DEBUG adding counters to CounterSummarySvc | |
TeslaReportAlgo... DEBUG Tools to release : | |
TeslaReportAlgo... DEBUG Services to release : EventDataSvc | |
TeslaReportAlgo... DEBUG Releasing service 'EventDataSvc' | |
TeslaReportAlgo... DEBUG ==> Finalize the base class GaudiTool | |
TeslaReportAlgo... DEBUG adding counters to CounterSummarySvc | |
TeslaReportAlgo... DEBUG Tools to release : ToolSvc.ParticleTransporter | |
TeslaReportAlgo... DEBUG Releasing tool 'ToolSvc.ParticleTransporter' | |
TeslaReportAlgo... DEBUG The tool 'ToolSvc.ParticleTransporter' of type 'ParticleTransporter' is released | |
TeslaReportAlgo... DEBUG Services to release : LoKiSvc LHCb::ParticlePropertySvc | |
TeslaReportAlgo... DEBUG Releasing service 'LoKiSvc' | |
TeslaReportAlgo... DEBUG Releasing service 'LHCb::ParticlePropertySvc' | |
ToolSvc.Sequenc... INFO -------------------------------------------------------------------------------------------------- | |
ToolSvc.Sequenc... INFO This machine has a speed about 2.62 times the speed of a 2.8 GHz Xeon. | |
ToolSvc.Sequenc... INFO Algorithm (millisec) | <user> | <clock> | min max | entries | total (s) | | |
ToolSvc.Sequenc... INFO -------------------------------------------------------------------------------------------------- | |
ToolSvc.Sequenc... INFO -------------------------------------------------------------------------------------------------- | |
CounterSummarySvc INFO filling counters... | |
CounterSummarySvc INFO counters filled OK | |
CounterSummarySvc INFO Wrote xml file summary.xml | |
RootCnvSvc INFO Disconnected data IO:06C6F8DA-A777-E411-AA57-02163E00BD46 [root://dcdoor05.pic.es:1094/pnfs/pic.es/data/lhcb/user/t/thead/2014_11/92315/92315460/EarlyEvents-Extended-L0-TurboMoore.xdst] | |
RootCnvSvc INFO Disconnected data IO:D62CC253-B177-E411-9409-C4346BC076D0 [EarlyEvents-Extended-L0-Turbo.xdst] | |
DataOnDemandSvc INFO Handled "DataFault" incidents: 165/100/323(Alg/Node/Total). | |
ApplicationMgr INFO Application Manager Finalized successfully | |
ApplicationMgr INFO Application Manager Terminated successfully | |
XMLSummary warning: Method "lumi" not available for this job |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from Configurables import Tesla | |
from Gaudi.Configuration import * | |
from Configurables import RecombineRawEvent, DecodeRawEvent | |
def execute(): | |
RecombineRawEvent() | |
DecodeRawEvent().DataOnDemand = True | |
from Configurables import ConfigTarFileAccessSvc | |
ConfigTarFileAccessSvc().File = "config.tar" | |
#Tesla().OutputLevel = DEBUG | |
Tesla().TriggerLine = "Hlt2DiMuonJPsi" | |
Tesla().ReportVersion = 2 | |
#Tesla().EvtMax = -1 | |
#from GaudiConf.IOHelper import IOHelper | |
#ioh = IOHelper() | |
#ioh.setupServices() | |
#ioh.inputFiles(["EarlyEvents-Extended-L0-Turbo.xdst"]) | |
Tesla().outputFile = "EarlyEvents-Extended-L0-Turbo.xdst" | |
def blah(): | |
from Configurables import TeslaReportAlgo | |
TeslaReportAlgo().OutputLevel = 1 | |
appendPostConfigAction(blah) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment