How to get specified trks/jets
- GetTrkList() = xKalman trks + iPatRec trks
- #include "athena_util/ChargedTrkUtil.h"
- std::vector xKalman = GetXKalmanTrks(GetTrkList()[,ptmin]);
- std::vector iPatRec = GetIPatRecTrks(GetTrkList()[,ptmin]);
- GetMuonList() = Moore trks + MuonBox(y) trks
- #include "athena_util/ChargedTrkUtil.h"
- std::vector Moore = GetMooreTrks(GetMuonList()[,ptmin]);
- std::vector MuonB = GetMuonBoxTrks(GetMuonList()[,ptmin]);
- GetJetList() = Combined jets + Taucand
- #include "athena_util/JetUtil.h"
- std::vector Comb = GetCombinedJets(GetJetList()[,ptmin]);
- std::vector Taus = GetTauCandJets(GetJetList()[,ptmin]);
Go to the main page
jtanaka