/search.css" rel="stylesheet" type="text/css"/> /search.js">
00001 /* 00002 * \class PerSimTrigCommandCollection 00003 * 00004 * \brief Persistant version of SimTrigCommandCollection 00005 * 00006 * bseilhan@iit.edu Tue Sep 23 16:23:56 CDT 2008 00007 * 00008 */ 00009 00010 #ifndef PerSimTrigCommandCollection_H 00011 #define PerSimTrigCommandCollection_H 1 00012 00013 #include "PerSimTrigCommand.h" 00014 00015 #include <vector> 00016 00017 class PerSimTrigCommandCollection { 00018 public: 00019 typedef std::vector<PerSimTrigCommand*> CommandVectors; 00020 00021 PerSimTrigCommandCollection(); 00022 PerSimTrigCommandCollection(const short int in_det,CommandVectors& in_commands); 00023 virtual ~PerSimTrigCommandCollection(); 00024 00025 short int detector; 00026 CommandVectors commands; 00027 }; 00028 00029 #endif // PerSimTrigCommandCollection_H