|
ATLAS Offline Software
|
◆ getBJets()
def python.PyParticleTools.getBJets |
( |
|
aKey | ) |
|
Retrieve BJetContainer object from SG
:param aKey: key of the object
see `getElectrons`
Definition at line 122 of file PyParticleTools.py.
123 """Retrieve BJetContainer object from SG
125 :param aKey: key of the object
130 return PyK.retrieve(PyK.GNS.BJetContainer,aKey)
◆ getCaloClusters()
def python.PyParticleTools.getCaloClusters |
( |
|
aKey | ) |
|
Retrieve CaloClusterContainer object from SG
:param aKey: key of the object
**examples**::
see `getElectrons`
Definition at line 193 of file PyParticleTools.py.
194 """Retrieve CaloClusterContainer object from SG
196 :param aKey: key of the object
203 return PyK.retrieve(PyK.GNS.CaloClusterContainer,aKey)
◆ getDetStatusMap()
def python.PyParticleTools.getDetStatusMap |
( |
|
aKey | ) |
|
Retrieve DetStatusMap object from SG
:param aKey: key of the object
**examples**::
see `getElectrons`
Definition at line 260 of file PyParticleTools.py.
261 """Retrieve DetStatusMap object from SG
263 :param aKey: key of the object
270 return PyK.retrieve(PyK.GNS.DetStatusMap,aKey)
◆ getElectrons()
def python.PyParticleTools.getElectrons |
( |
|
aKey | ) |
|
Retrieve ElectronContainer object from SG
:param aKey: key of the object
**examples**::
athena> econ = PyParticleTools.getElectrons('ElectronCollection')
athena> for e in econ:
... print e.pt() # don't forget to put an additional whitespace before 'print'
... # just hit the return key
Definition at line 17 of file PyParticleTools.py.
18 """Retrieve ElectronContainer object from SG
20 :param aKey: key of the object
24 athena> econ = PyParticleTools.getElectrons('ElectronCollection')
25 athena> for e in econ:
26 ... print e.pt() # don't forget to put an additional whitespace before 'print'
27 ... # just hit the return key
30 return PyK.retrieve(PyK.GNS.ElectronContainer,aKey)
◆ getIParticles()
def python.PyParticleTools.getIParticles |
( |
|
aKey | ) |
|
Retrieve IParticleContainer object from SG
:param aKey: key of the object
see `getElectrons`
Definition at line 112 of file PyParticleTools.py.
113 """Retrieve IParticleContainer object from SG
115 :param aKey: key of the object
120 return PyK.retrieve(PyK.GNS.IParticleContainer,aKey)
◆ getJets()
def python.PyParticleTools.getJets |
( |
|
aKey | ) |
|
Retrieve JetContainer object from SG
:param aKey: key of the object
see `getElectrons`
Definition at line 72 of file PyParticleTools.py.
73 """Retrieve JetContainer object from SG
75 :param aKey: key of the object
80 return PyK.retrieve(PyK.GNS.JetCollection,aKey)
◆ getMissingET()
def python.PyParticleTools.getMissingET |
( |
|
aKey | ) |
|
Retrieve MissingET object from SG
:param aKey: key of the object
**examples**::
athena> met = PyParticleTools.getMissingET('MET_Final')
athena> print met.sumet()
Definition at line 132 of file PyParticleTools.py.
133 """Retrieve MissingET object from SG
135 :param aKey: key of the object
139 athena> met = PyParticleTools.getMissingET('MET_Final')
140 athena> print met.sumet()
143 return PyK.retrieve(PyK.GNS.MissingET,aKey)
◆ getMissingEtCalo()
def python.PyParticleTools.getMissingEtCalo |
( |
|
aKey | ) |
|
Retrieve MissingEtCalo object from SG
:param aKey: key of the object
**examples**::
athena> met = PyParticleTools.getMissingEtCalo('MET_Base')
athena> print met.calibType()
Definition at line 158 of file PyParticleTools.py.
159 """Retrieve MissingEtCalo object from SG
161 :param aKey: key of the object
165 athena> met = PyParticleTools.getMissingEtCalo('MET_Base')
166 athena> print met.calibType()
169 return PyK.retrieve(PyK.GNS.MissingEtCalo,aKey)
◆ getMissingETSig()
def python.PyParticleTools.getMissingETSig |
( |
|
aKey | ) |
|
Retrieve MissingETSig object from SG
:param aKey: key of the object
**examples**::
athena> met = PyParticleTools.getMissingETSig('METSig')
athena> print met.met()
Definition at line 145 of file PyParticleTools.py.
146 """Retrieve MissingETSig object from SG
148 :param aKey: key of the object
152 athena> met = PyParticleTools.getMissingETSig('METSig')
153 athena> print met.met()
156 return PyK.retrieve(PyK.GNS.MissingETSig,aKey)
◆ getMissingETSigObjs()
def python.PyParticleTools.getMissingETSigObjs |
( |
|
aKey | ) |
|
Retrieve MissingETSigObjContainer object from SG
:param aKey: key of the object
see `getElectrons`
Definition at line 184 of file PyParticleTools.py.
185 """Retrieve MissingETSigObjContainer object from SG
187 :param aKey: key of the object
191 return PyK.retrieve(PyK.GNS.MissingETSigObjContainer,aKey)
◆ getMissingEtTruth()
def python.PyParticleTools.getMissingEtTruth |
( |
|
aKey | ) |
|
Retrieve MissingEtTruth object from SG
:param aKey: key of the object
**examples**::
athena> met = PyParticleTools.getMissingEtTruth('MET_Truth')
athena> print met.sumet()
Definition at line 171 of file PyParticleTools.py.
172 """Retrieve MissingEtTruth object from SG
174 :param aKey: key of the object
178 athena> met = PyParticleTools.getMissingEtTruth('MET_Truth')
179 athena> print met.sumet()
182 return PyK.retrieve(PyK.GNS.MissingEtTruth,aKey)
◆ getMuons()
def python.PyParticleTools.getMuons |
( |
|
aKey | ) |
|
Retrieve MuonContainer object from SG
:param aKey: key of the object
see `getElectrons`
Definition at line 32 of file PyParticleTools.py.
33 """Retrieve MuonContainer object from SG
35 :param aKey: key of the object
40 return PyK.retrieve(PyK.GNS.Analysis.MuonContainer,aKey)
◆ getMuonSpShowers()
def python.PyParticleTools.getMuonSpShowers |
( |
|
key | ) |
|
Retrieve Rec::MuonSpShowerContainer object from SG
:param aKey: key of the object
**examples**::
see `getElectrons`
Definition at line 273 of file PyParticleTools.py.
274 """Retrieve Rec::MuonSpShowerContainer object from SG
276 :param aKey: key of the object
283 return PyK.retrieve(PyK.GNS.Rec.MuonSpShowerContainer,key)
◆ getNeutrinos()
def python.PyParticleTools.getNeutrinos |
( |
|
aKey | ) |
|
Retrieve NeutrinoContainer object from SG
:param aKey: key of the object
see `getElectrons`
Definition at line 42 of file PyParticleTools.py.
43 """Retrieve NeutrinoContainer object from SG
45 :param aKey: key of the object
50 return PyK.retrieve(PyK.GNS.NeutrinoContainer,aKey)
◆ getParticleBases()
def python.PyParticleTools.getParticleBases |
( |
|
aKey | ) |
|
Retrieve ParticleBaseContainer object from SG
:param aKey: key of the object
see `getElectrons`
Definition at line 52 of file PyParticleTools.py.
53 """Retrieve ParticleBaseContainer object from SG
55 :param aKey: key of the object
60 return PyK.retrieve(PyK.GNS.ParticleBaseContainer,aKey)
◆ getParticleJets()
def python.PyParticleTools.getParticleJets |
( |
|
aKey | ) |
|
Retrieve ParticleJetContainer object from SG
OBSOLETE due to ParticleJet/Jet merger
:param aKey: key of the object
see `getElectrons`
Definition at line 62 of file PyParticleTools.py.
63 """Retrieve ParticleJetContainer object from SG
64 OBSOLETE due to ParticleJet/Jet merger
65 :param aKey: key of the object
70 return PyK.retrieve(PyK.GNS.ParticleJetContainer,aKey)
◆ getPhotons()
def python.PyParticleTools.getPhotons |
( |
|
aKey | ) |
|
Retrieve PhotonContainer object from SG
:param aKey: key of the object
see `getElectrons`
Definition at line 82 of file PyParticleTools.py.
83 """Retrieve PhotonContainer object from SG
85 :param aKey: key of the object
90 return PyK.retrieve(PyK.GNS.PhotonContainer,aKey)
◆ getTauJets()
def python.PyParticleTools.getTauJets |
( |
|
aKey | ) |
|
Retrieve TauJetContainer object from SG
:param aKey: key of the object
see `getElectrons`
Definition at line 92 of file PyParticleTools.py.
93 """Retrieve TauJetContainer object from SG
95 :param aKey: key of the object
100 return PyK.retrieve(PyK.GNS.Analysis.TauJetContainer,aKey)
◆ getTrackParticles()
def python.PyParticleTools.getTrackParticles |
( |
|
aKey | ) |
|
Retrieve TrackParticleContainer object from SG
:param aKey: key of the object
**examples**::
see `getElectrons`
Definition at line 231 of file PyParticleTools.py.
232 """Retrieve TrackParticleContainer object from SG
234 :param aKey: key of the object
241 return PyK.retrieve(PyK.GNS.Rec.TrackParticleContainer,aKey)
◆ getTrackParticleTruths()
def python.PyParticleTools.getTrackParticleTruths |
( |
|
aKey | ) |
|
Retrieve TrackParticleTruthCollection object from SG
:param aKey: key of the object
**examples**::
see `getElectrons`
Definition at line 218 of file PyParticleTools.py.
219 """Retrieve TrackParticleTruthCollection object from SG
221 :param aKey: key of the object
228 return PyK.retrieve(PyK.GNS.TrackParticleTruthCollection,aKey)
◆ getTrackRecords()
def python.PyParticleTools.getTrackRecords |
( |
|
aKey | ) |
|
Retrieve TrackRecordCollection object from SG
:param aKey: key of the object
**examples**::
see `getElectrons`
Definition at line 244 of file PyParticleTools.py.
245 """Retrieve TrackRecordCollection object from SG
247 :param aKey: key of the object
257 return PyK.retrieve(
"TrackRecordCollection",aKey)
◆ getTruthParticles()
def python.PyParticleTools.getTruthParticles |
( |
|
aKey | ) |
|
Retrieve TruthParticleContainer object from SG
:param aKey: key of the object
see `getElectrons`
Definition at line 102 of file PyParticleTools.py.
103 """Retrieve TruthParticleContainer object from SG
105 :param aKey: key of the object
110 return PyK.retrieve(PyK.GNS.TruthParticleContainer,aKey)
◆ getVertices()
def python.PyParticleTools.getVertices |
( |
|
aKey | ) |
|
Retrieve VxContainer object from SG
:param aKey: key of the object
**examples**::
see `getElectrons`
Definition at line 205 of file PyParticleTools.py.
206 """Retrieve VxContainer object from SG
208 :param aKey: key of the object
215 return PyK.retrieve(PyK.GNS.VxContainer,aKey)
◆ __docformat__
string python.PyParticleTools.__docformat__ = "restructuredtext en" |
|
private |
def getTrackRecords(aKey)
def getMissingEtTruth(aKey)
def getParticleBases(aKey)
def getMissingETSig(aKey)
def getCaloClusters(aKey)
def getTruthParticles(aKey)
def getMissingEtCalo(aKey)
def getMuonSpShowers(key)
def getTrackParticles(aKey)
def getTrackParticleTruths(aKey)
def getDetStatusMap(aKey)
def getParticleJets(aKey)
def getMissingETSigObjs(aKey)