/search.css" rel="stylesheet" type="text/css"/> /search.js">
00001 #include "PerSimTrigEvent/PerSimTrigCommandCollection.h" 00002 PerSimTrigCommandCollection::PerSimTrigCommandCollection(): detector(0) 00003 , commands() 00004 {} 00005 00006 PerSimTrigCommandCollection::PerSimTrigCommandCollection(const short int in_det, 00007 CommandVectors& in_commands) 00008 : detector(in_det) 00009 , commands(in_commands) 00010 {} 00011 00012 PerSimTrigCommandCollection::~PerSimTrigCommandCollection() 00013 { 00014 CommandVectors::iterator it; 00015 for(it = commands.begin(); it != commands.end(); ++it){ 00016 delete *it; 00017 } 00018 }