/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
FastSimulation/Event/interface/FSimEvent.h
66 строк
2 KB
Cms Build
Clang-Format
24 май 2019, 00:14
24 май 2019, 00:14
740c44a
Код
Авторство
О чём код?
#ifndef FastSimulation_Event_FSimEvent_H #define FastSimulation_Event_FSimEvent_H // CMSSW Headers #include "DataFormats/Provenance/interface/EventID.h" #include "DataFormats/HepMCCandidate/interface/GenParticleFwd.h" #include "SimDataFormats/Track/interface/SimTrackContainer.h" #include "SimDataFormats/Vertex/interface/SimVertexContainer.h" // FAMOS Headers #include "FastSimulation/Event/interface/FBaseSimEvent.h" /** The FAMOS SimEvent: inherits from FBaseSimEvent, * where the latter provides FAMOS-specific event features (splitting * proposed by Maya STAVRIANAKOU) * * An FSimEvent contains, at filling time, only particles from the * GenEvent it is being filled with. Material Effects then * update its content, so that it resembles the output of Geant * at the end of the material effect processing. * * Important : All distances are in mm * * \author Patrick Janot, CERN * \date: 9-Dec-2003 * */ class FSimEvent : public FBaseSimEvent { public: /// Default constructor FSimEvent(const edm::ParameterSet& kine); /// usual virtual destructor virtual ~FSimEvent(); /// fill the FBaseSimEvent from the current HepMC::GenEvent void fill(const HepMC::GenEvent& hev, edm::EventID& Id); /// fill the FBaseSimEvent from the SimTrack's and SimVert'ices void fill(const std::vector<SimTrack>& simTracks, const std::vector<SimVertex>& simVertices); ///Method to return the EventId edm::EventID id() const; ///Method to return the event weight float weight() const; /// Number of tracks unsigned int nTracks() const; /// Number of vertices unsigned int nVertices() const; /// Number of MC particles unsigned int nGenParts() const; /// Load containers of tracks (and muons) and vertices for the edm::Event void load(edm::SimTrackContainer& c, edm::SimTrackContainer& m) const; void load(edm::SimVertexContainer& c) const; void load(FSimVertexTypeCollection& c) const; private: edm::EventID id_; double weight_; }; #endif // FSIMEVENT_H