/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
CondFormats/L1TObjects/interface/L1TUtmObject.h
133 строки
4 KB
Shahzad Malik Muzaffar
[ALCA-DB-L1] Changes suggested by new llvm18 clang-format
05 сен 2024, 17:07
05 сен 2024, 17:07
6a92add
Код
Авторство
О чём код?
// // NOTE: This file was automatically generated from UTM library via import_utm.pl // DIRECT EDITS MIGHT BE LOST. // /** * @author Takashi Matsushita * Created: 12 Mar 2015 */ #ifndef tmEventSetup_L1TUtmObject_hh #define tmEventSetup_L1TUtmObject_hh #include "CondFormats/L1TObjects/interface/L1TUtmCut.h" #include "CondFormats/Serialization/interface/Serializable.h" #include "tmEventSetup/esObject.hh" #include <limits> #include <string> #include <vector> /** * This class implements data structure for Object */ class L1TUtmObject { public: L1TUtmObject() : name_(), type_(), comparison_operator_(), bx_offset_(), threshold_(), ext_signal_name_(), ext_channel_id_(std::numeric_limits<unsigned int>::max()), cuts_(), version(0) {} L1TUtmObject(std::string name, int type, int comparison_operator, int bx_offset, double threshold, std::string ext_signal_name, unsigned int ext_channel_id, std::vector<L1TUtmCut> cuts, unsigned int vers) : name_(name), type_(type), comparison_operator_(comparison_operator), bx_offset_(bx_offset), threshold_(threshold), ext_signal_name_(ext_signal_name), ext_channel_id_(ext_channel_id), cuts_(cuts), version(vers) {} L1TUtmObject(const tmeventsetup::esObject& esObj) : name_(esObj.getName()), type_(esObj.getType()), comparison_operator_(esObj.getComparisonOperator()), bx_offset_(esObj.getBxOffset()), threshold_(esObj.getThreshold()), ext_signal_name_(esObj.getExternalSignalName()), ext_channel_id_(esObj.getExternalChannelId()), version(0) { cuts_.reserve(esObj.getCuts().size()); for (auto it = esObj.getCuts().begin(); it != esObj.getCuts().end(); ++it) cuts_.emplace_back(L1TUtmCut(*it)); }; virtual ~L1TUtmObject() = default; /** set object name */ void setName(const std::string& x) { name_ = x; }; /** set object type */ void setType(const int x) { type_ = x; }; /** set comparison operator for threshold */ void setComparisonOperator(const int x) { comparison_operator_ = x; }; /** set BX offset of the object */ void setBxOffset(const int x) { bx_offset_ = x; }; /** set Et/pT threshold in GeV */ void setThreshold(double x) { threshold_ = x; }; /** set external name */ void setExternalSignalName(const std::string& x) { ext_signal_name_ = x; }; /** set external channel id */ void setExternalChannelId(const unsigned int x) { ext_channel_id_ = x; }; /** set cuts */ void setCuts(const std::vector<L1TUtmCut>& x) { cuts_ = x; }; /** get object name */ const std::string& getName() const { return name_; }; /** get object type */ const int getType() const { return type_; }; /** get comparison operator for threshold cut */ const int getComparisonOperator() const { return comparison_operator_; }; /** get BX offset of the object */ const int getBxOffset() const { return bx_offset_; }; /** get Et/pT threshold in GeV */ const double getThreshold() const { return threshold_; }; /** get external name */ const std::string& getExternalSignalName() const { return ext_signal_name_; }; /** get external channel id */ const unsigned int getExternalChannelId() const { return ext_channel_id_; }; /** get cuts on the object */ const std::vector<L1TUtmCut>& getCuts() const { return cuts_; }; protected: std::string name_; /**< name of object */ int type_; /**< type of object */ int comparison_operator_; /**< comparison operator for threshold cut */ int bx_offset_; /**< bunch crossing offset of object */ double threshold_; /**< threshold in GeV */ std::string ext_signal_name_; /**< name of extenal signal, only valid when esObjectType == EXT */ unsigned int ext_channel_id_; /**< channel id of external signal, only valid when esObjectType == EXT */ std::vector<L1TUtmCut> cuts_; /**< list of cuts applied on object */ unsigned int version; COND_SERIALIZABLE; }; #endif // tmEventSetup_L1TUtmObject_hh