Log In | Get Help   
Home My Page Projects Code Snippets Project Openings Mareframe
Summary Activity Forums Tracker Lists Tasks Docs Surveys News SCM Files
[mareframe] View of /trunk/paramin-beta/netdata.cc
[mareframe] / trunk / paramin-beta / netdata.cc Repository:
ViewVC logotype

View of /trunk/paramin-beta/netdata.cc

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1 - (download) (annotate)
Mon Feb 10 17:09:07 2014 UTC (10 years, 3 months ago) by agomez
File size: 395 byte(s)
Initial version based on Gadget 2.2.00
#include "netdata.h"
#include "gadget.h"

NetDataVariables::NetDataVariables(int numVar) {
  tag = -1;
  x_id = -1;
  if (numVar < 1) {
    cerr << "Error in netdata - number of variables must be positive\n";
    exit(EXIT_FAILURE);
  }
  x = new double[numVar];
}

NetDataVariables::~NetDataVariables() {
  delete[] x;
}

NetDataResult::NetDataResult() {
}

NetDataResult::~NetDataResult() {
}

root@forge.cesga.es
ViewVC Help
Powered by ViewVC 1.0.0  

Powered By FusionForge