Rocstar  1.0
Rocstar multiphysics simulation application
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Test.C File Reference
#include <iostream>
#include <string>
#include <sstream>
#include "Global.H"
#include "Profiler.H"
#include "COMM.H"
Include dependency graph for Test.C:

Go to the source code of this file.

Classes

class  TestComLine
 ComLineObject for testing app. More...
 
class  TestProgram
 

Typedefs

typedef
Global::ParallelGlobalObj
< Comm::CommunicatorObject,
std::string, int,
Profiler::ProfilerObj > 
TestGlobal
 

Functions

int main (int argc, char *argv[])
 

Typedef Documentation

typedef Global::ParallelGlobalObj<Comm::CommunicatorObject,std::string,int,Profiler::ProfilerObj> TestGlobal

Definition at line 59 of file Test.C.

Function Documentation

int main ( int  argc,
char *  argv[] 
)

Definition at line 111 of file Test.C.

References TestProgram::Initialize().

112 {
113  TestProgram MyProgram(argc,argv);
114  if(MyProgram.Initialize())
115  return(1);
116  MyProgram.OutStream() << "Calling RUN." << std::endl;
117  MyProgram.StdOut("Testing\n");
118  if(MyProgram.Run())
119  return(1);
120  std::cout << "Calling Finalize." << std::endl;
121  if(MyProgram.Finalize())
122  return(1);
123  std::cout << "All done." << std::endl;
124  return(0);
125 }

Here is the call graph for this function: