00001 /* 00002 * APOLLO: A complete DAQ and Online Data Analysis Framework for Cuore 00003 * $Id: QDaqSetCommand.hh 3 2006-04-20 17:37:43Z pallas $ 00004 * M.P. created 28/10/4 00005 * 00006 * Class QDaqSetCommand: set command (any parameter setting) for daq server 00007 * 00008 */ 00009 00010 #ifndef __QDAQSETCOMMAND_HH_ 00011 #define __QDAQSETCOMMAND_HH_ 00012 00013 #include "QCuore.hh" 00014 #include "QCommand.hh" 00015 00016 class QDaqSetCommand : public QCommand { 00017 public: 00018 QDaqSetCommand(); 00019 virtual ~QDaqSetCommand(); 00020 00021 virtual void Execute(); 00022 00023 virtual void CheckParams(); 00024 00025 private: 00026 00027 int fCrateId; 00028 bool fTrgFlag; 00029 }; 00030 00031 #endif