00001 #include "PerSimTrigEvent/PerSimTrigCommandHeader.h" 00002 00003 PerSimTrigCommandHeader::PerSimTrigCommandHeader() 00004 :commandCollections() 00005 {} 00006 00007 PerSimTrigCommandHeader::PerSimTrigCommandHeader(const PerComVector& in_collection) 00008 :commandCollections(in_collection) 00009 {} 00010 00011 PerSimTrigCommandHeader::~PerSimTrigCommandHeader() 00012 { 00013 PerComVector::iterator it; 00014 for(it = commandCollections.begin(); it != commandCollections.end(); ++it) 00015 { 00016 delete *it; 00017 } 00018 }