/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
PhysicsTools/PatUtils/interface/ParticleCode.h
40 строк
1012 B
Cms Build
Clang-Format
05 июн 2019, 13:58
05 июн 2019, 13:58
4bb99cd
Код
Авторство
О чём код?
#ifndef PhysicsTools_PatUtils_ParticleCode_h #define PhysicsTools_PatUtils_ParticleCode_h /** \file ParticleCode.h \brief Defines the enumerations of particle type and status. Inspired from the MrParticle ID flags. \author F.J. Ronga (ETH Zurich) \version $Id: $ **/ namespace pat { //! Definition of particle types enum ParticleType { UNKNOWN = 0, //!< 0: Unidentified isolated particle ELECTRON, //!< 1: MUON, //!< 2: TAU, //!< 3: PHOTON, //!< 4: JET, //!< 5: BJET, //!< 6: TOP, //!< 7: INVISIBLE //!< 8: Invisible particle (Monte Carlo only) }; //! Definition of particle status after selection enum ParticleStatus { GOOD = 0, //!< 0: Passed selection BAD, //!< 1: Failed selection (without additional info) HOVERE, //!< 2: Bad H/E ratio SHOWER, //!< 3: Bad ECAL shower shape MATCHING //!< 4: Bad matching to track }; } // namespace pat #endif