/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
CommonTools/BaseParticlePropagator/interface/makeMuon.h
36 строк
943 B
Cms Build
Clang-Format
29 май 2019, 08:27
29 май 2019, 08:27
93dc37b
Код
Авторство
О чём код?
#ifndef CommonTools_BaseParticlePropagator_makeMuon_h #define CommonTools_BaseParticlePropagator_makeMuon_h // -*- C++ -*- // // Package: CommonTools/BaseParticlePropagator // Class : makeMuon // /**\class makeMuon makeMuon.h "CommonTools/BaseParticlePropagator/interface/makeMuon.h" Description: Creates a RawParticle of type muon Usage: <usage> */ // // Original Author: Christopher Jones // Created: Mon, 04 Mar 2019 17:36:32 GMT // // system include files #include "DataFormats/Math/interface/LorentzVector.h" // user include files // forward declarations class RawParticle; namespace rawparticle { ///Create a particle with momentum 'p' at space-time point xStart /// The particle will be a muon if iParticle==true, else it will /// be an anti-muon. RawParticle makeMuon(bool isParticle, const math::XYZTLorentzVector& p, const math::XYZTLorentzVector& xStart); } // namespace rawparticle #endif