00001 #include "PerSimTrigEvent/PerSimTrigCommand.h" 00002 00003 PerSimTrigCommand::PerSimTrigCommand():detector(0) 00004 ,clockCycle(0) 00005 ,type(0) 00006 ,nhit(0) 00007 ,esumAdc(0) 00008 ,esumComp(0) 00009 00010 {} 00011 00012 PerSimTrigCommand::PerSimTrigCommand( const int in_clockCycle, 00013 const int in_type, 00014 const short int in_detector, 00015 const int in_nhit, 00016 const int in_esumAdc, 00017 const int in_esumComp) 00018 :detector(in_detector) 00019 ,clockCycle(in_clockCycle) 00020 ,type(in_type) 00021 ,nhit(in_nhit) 00022 ,esumAdc(in_esumAdc) 00023 ,esumComp(in_esumComp) 00024 {} 00025 00026 PerSimTrigCommand::~PerSimTrigCommand(){}