/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
DataFormats/L1THGCal/interface/HGCalCluster.h
33 строки
946 B
Matti Kortelainen
Move stored types in io_v1 namespace, reset class versions to 3
22 май 2026, 18:18
22 май 2026, 18:18
909f324
Код
Авторство
О чём код?
#ifndef DataFormats_L1Trigger_HGCalCluster_h #define DataFormats_L1Trigger_HGCalCluster_h #include "DataFormats/Common/interface/Ptr.h" #include "DataFormats/L1Trigger/interface/BXVector.h" #include "DataFormats/L1THGCal/interface/HGCalTriggerCell.h" #include "DataFormats/L1THGCal/interface/HGCalClusterT.h" namespace l1t { namespace io_v1 { class HGCalCluster : public HGCalClusterT<l1t::HGCalTriggerCell> { public: HGCalCluster() {} HGCalCluster(const LorentzVector p4, int pt = 0, int eta = 0, int phi = 0); HGCalCluster(const edm::Ptr<l1t::HGCalTriggerCell>& tc); ~HGCalCluster() override; void setModule(uint32_t module) { module_ = module; } uint32_t module() const { return module_; } private: uint32_t module_; }; } // namespace io_v1 using HGCalCluster = io_v1::HGCalCluster; typedef BXVector<HGCalCluster> HGCalClusterBxCollection; } // namespace l1t #endif