mirror of
https://github.com/nasa/trick.git
synced 2024-12-18 20:57:55 +00:00
Clean up
This commit is contained in:
parent
1568d887ac
commit
54dc69b6d7
@ -69,7 +69,7 @@ namespace Trick {
|
||||
@code <my_drg> = trick.DRAscii("<in_name>") @endcode
|
||||
@copydoc Trick::DataRecordGroup::DataRecordGroup(string in_name)
|
||||
*/
|
||||
DRAscii( std::string in_name, DR_Buffering drb = DR_Buffering::DR_Buffer /*Trick::DR_Type dr_type = Trick::DR_Type::DR_Type_Ascii*/ ) ;
|
||||
DRAscii( std::string in_name, Trick::DR_Type dr_type = Trick::DR_Type::DR_Type_Ascii ) ;
|
||||
|
||||
/**
|
||||
@copybrief Trick::DataRecordGroup::format_specific_header
|
||||
|
@ -414,7 +414,7 @@ namespace Trick {
|
||||
virtual int add_time_variable() ;
|
||||
|
||||
/**
|
||||
@brief This function adds jobs to the DRG based on job_config bits. By default a DRG should be constructed with all jobs on.
|
||||
@brief This function adds jobs to the DRG based on the dr type.
|
||||
@returns void
|
||||
*/
|
||||
void configure_jobs(DR_Type type) ;
|
||||
|
@ -18,7 +18,7 @@ PROGRAMMERS:
|
||||
#include "trick/message_type.h"
|
||||
#include "trick/bitfield_proto.h"
|
||||
|
||||
Trick::DRAscii::DRAscii( std::string in_name, DR_Buffering drb /*Trick::DR_Type dr_type*/ ) : Trick::DataRecordGroup( in_name/*, dr_type*/ ) {
|
||||
Trick::DRAscii::DRAscii( std::string in_name, Trick::DR_Type dr_type ) : Trick::DataRecordGroup( in_name, dr_type ) {
|
||||
|
||||
ascii_float_format = "%20.8g" ;
|
||||
ascii_double_format = "%20.16g" ;
|
||||
|
@ -419,9 +419,6 @@ int Trick::DataRecordGroup::init() {
|
||||
}
|
||||
|
||||
void Trick::DataRecordGroup::configure_jobs(DR_Type type) {
|
||||
|
||||
//std::cout << "!!!!!!!!!! DataRecordGroup::configure_jobs: " << (int)type << std::endl;
|
||||
|
||||
switch(type) {
|
||||
default:
|
||||
// run the restart job in phase 60001
|
||||
|
Loading…
Reference in New Issue
Block a user