/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
DataFormats/Provenance/interface/ParameterSetID.h
24 строки
774 B
W. David Dagenhart
From scram b code-format-all (clang-format)
10 май 2019, 17:51
10 май 2019, 17:51
82e0ab0
Код
Авторство
О чём код?
#ifndef DataFormats_Provenance_ParameterSetID_h #define DataFormats_Provenance_ParameterSetID_h /*---------------------------------------------------------------------- ParameterSetID: A globally unique identifier for each collection of tracked parameters. Two ParameterSet objects will have equal ParameterSetIDs if they contain the same set of tracked parameters. We calculate the ParameterSetID from the names and values of the tracked parameters within a ParameterSet, currently using the MD5 algorithm. ----------------------------------------------------------------------*/ #include "DataFormats/Provenance/interface/Hash.h" #include "DataFormats/Provenance/interface/HashedTypes.h" namespace edm { typedef Hash<ParameterSetType> ParameterSetID; } #endif