Skip to content

Commit

Permalink
qa_data.h synced with Annotation.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
h-dh committed Oct 15, 2015
1 parent 1e430f8 commit 77a27a9
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions include/qa_data.h
Original file line number Diff line number Diff line change
Expand Up @@ -52,14 +52,12 @@ class DataOutputBuffer
class Outlier
{
public:
Outlier( QA *p, size_t vmdIX, std::string name);
Outlier( QA*, size_t vmdIX, std::string name);
~Outlier(){;}

QA *pQA;

static bool
isSelected( std::vector<std::string> &opts,
std::string &vName, int effDims );
isSelected(Variable&, std::vector<std::string> &opts,
std::string& unlimName );

//! Evaluate outlier test
/*! When of checking sub-temp files or in post-processing mode.
Expand All @@ -76,6 +74,7 @@ class Outlier
MtrxArr<double> ma_d;

Annotation *notes;
QA *pQA;
} ;

class ReplicatedRecord
Expand All @@ -96,8 +95,8 @@ class ReplicatedRecord
bool *arr_rep_bool, bool *arr_1st_bool,
std::vector<std::string>& range) ;
static bool
isSelected( std::vector<std::string> &options,
std::string &vName, int effDims );
isSelected(Variable&, std::vector<std::string> &options,
std::string& unlimName );

void parseOption( std::vector<std::string> &opts ) ;
void report( std::vector<std::string> &note, size_t bufCount,
Expand Down Expand Up @@ -170,7 +169,7 @@ class QA_Data
//! Flush results to the qa-netCDF file.
void flush(void);

void init(InFile*, QA*, std::string);
void init(QA*, std::string);

//! Change the flush counter; 1500 by default
void initBuffer(QA*, size_t next=0, size_t max=1500);
Expand Down

0 comments on commit 77a27a9

Please sign in to comment.