File indexing completed on 2024-04-06 12:01:05
0001 #ifndef __CommonTools_ParticleFlow_interface_EventHypothesis__
0002 #define __CommonTools_ParticleFlow_interface_EventHypothesis__
0003
0004 #include "FWCore/ParameterSet/interface/ParameterSet.h"
0005
0006 #include <map>
0007 #include <string>
0008
0009 namespace pf2pat {
0010
0011 class EventHypothesis {
0012 public:
0013
0014
0015
0016
0017 EventHypothesis(const edm::ParameterSet& ps);
0018
0019 private:
0020
0021 typedef std::string Producer;
0022 typedef std::map<std::string, Producer> Producers;
0023 typedef std::vector<std::string> Sequence;
0024
0025
0026 std::string name_;
0027
0028
0029 Producers producers_;
0030
0031
0032 Sequence sequence_;
0033 };
0034
0035 }
0036
0037 #endif