00001 00010 #ifndef PERRANDOMSTATE_H 00011 #define PERRANDOMSTATE_H 00012 00013 #include "PerBaseEvent/PerHeaderObject.h" 00014 #include <vector> 00015 #include <string> 00016 00017 class PerRandomState : public PerHeaderObject{ 00018 public: 00019 PerRandomState(); 00020 virtual ~PerRandomState(); 00021 00022 std::string Engine; 00023 00024 std::vector<long> RndmSeeds; 00025 00026 }; 00027 00028 #endif //PERRANDOMSTATE_H