/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
DataFormats/TestObjects/interface/StreamTestSimple.h
27 строк
793 B
W. David Dagenhart
From scram b code-format-all (clang-format)
10 май 2019, 17:51
10 май 2019, 17:51
82e0ab0
Код
Авторство
О чём код?
#ifndef DataFormats_TestObjects_StreamTestSimple_h #define DataFormats_TestObjects_StreamTestSimple_h #include "DataFormats/Common/interface/SortedCollection.h" #include "FWCore/Utilities/interface/typedefs.h" namespace edmtestprod { struct Simple { typedef int key_type; cms_int32_t key_; double data_; key_type id() const { return key_; } bool operator==(Simple const&) const { return true; } bool operator<(Simple const&) const { return true; } }; typedef edm::SortedCollection<Simple> StreamTestSimple; struct X0123456789012345678901234567890123456789012345678901234567890123456789012345678901 { int blob_; }; typedef X0123456789012345678901234567890123456789012345678901234567890123456789012345678901 Pig; } // namespace edmtestprod #endif