Macros

Line Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
#ifndef DataFormats_Provenance_EventSelectionID_h
#define DataFormats_Provenance_EventSelectionID_h

/*----------------------------------------------------------------------

EventSelectionID: An identifier to uniquely identify the configuration
of the event selector subsystem of an OutputModule.

----------------------------------------------------------------------*/

#include "DataFormats/Provenance/interface/ParameterSetID.h"
#include <vector>

namespace edm {
  typedef ParameterSetID EventSelectionID;
  typedef std::vector<EventSelectionID> EventSelectionIDVector;
}  // namespace edm

#endif