/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
CondFormats/Common/interface/FileBlobCollection.h
32 строки
744 B
Shahzad Malik Muzaffar
[ALCA-DB] Changes suggested by new llvm18 clang-format
05 сен 2024, 17:06
05 сен 2024, 17:06
d09a7ed
Код
Авторство
О чём код?
#ifndef Alignment_MillePedeAlignmentAlgorithm_FileBlobCollection_h #define Alignment_MillePedeAlignmentAlgorithm_FileBlobCollection_h // Original Author: Broen van Besien // Created: Mon, 06 Jul 2015 12:18:35 GMT /* * This class... * BVB: TODO * */ #include "CondFormats/Common/interface/FileBlob.h" #include <vector> class FileBlobCollection { public: FileBlobCollection() {} ~FileBlobCollection() {} void addFileBlob(FileBlob &fileBlob); int size() const; std::vector<FileBlob>::const_iterator begin() const; std::vector<FileBlob>::const_iterator end() const; bool mergeProduct(FileBlobCollection const &other); void swap(FileBlobCollection &iOther); private: std::vector<FileBlob> fileBlobs; }; #endif