Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:05:02

0001 #ifndef DataFormats_Provenance_ParameterSetID_h
0002 #define DataFormats_Provenance_ParameterSetID_h
0003 
0004 /*----------------------------------------------------------------------
0005   
0006 ParameterSetID: A globally unique identifier for each collection of
0007 tracked parameters. Two ParameterSet objects will have equal
0008 ParameterSetIDs if they contain the same set of tracked parameters.
0009 
0010 We calculate the ParameterSetID from the names and values of the
0011 tracked parameters within a ParameterSet, currently using the MD5
0012 algorithm.
0013 
0014 
0015 ----------------------------------------------------------------------*/
0016 
0017 #include "DataFormats/Provenance/interface/Hash.h"
0018 #include "DataFormats/Provenance/interface/HashedTypes.h"
0019 
0020 namespace edm {
0021   typedef Hash<ParameterSetType> ParameterSetID;
0022 
0023 }
0024 #endif