Rocstar  1.0
Rocstar multiphysics simulation application
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Rocmop_2.C File Reference
#include "Rocblas.h"
#include "Rocmop_2.h"
#include "Rocmap.h"
#include "roccom.h"
#include "Pane_communicator.h"
#include "Pane_connectivity.h"
#include "Pane_ghost_connectivity.h"
#include "Geometric_Metrics_3.h"
#include "PN_patch.h"
#include "geometry.h"
#include "mapbasic.h"
#include <iostream>
#include <iomanip>
#include <fstream>
Include dependency graph for Rocmop_2.C:

Go to the source code of this file.

Functions

std::ifstream & get_next_line (std::ifstream &Inf, std::string &line, const char noop)
 
void Rocmop_load_module (const char *mname)
 
void Rocmop_unload_module (const char *mname)
 
void COM_F_FUNC2 (rocmop_load_module, ROCMOP_LOAD_MODULE) const
 
void COM_F_FUNC2 (rocmop_unload_module, ROCMOP_UNLOAD_MODULE) const
 

Function Documentation

void COM_F_FUNC2 ( rocmop_load_module  ,
ROCMOP_LOAD_MODULE   
) const

Definition at line 2364 of file Rocmop_2.C.

References Rocmop::load().

2365 { Rocmop::load( std::string(mname, length)); }
double length(Vector3D *const v, int n)
static void load(const std::string &mname)
Loads Rocmop onto Roccom with a given module name.
Definition: Rocmop.C:88

Here is the call graph for this function:

void COM_F_FUNC2 ( rocmop_unload_module  ,
ROCMOP_UNLOAD_MODULE   
) const

Definition at line 2367 of file Rocmop_2.C.

References Rocmop::unload().

2368 { Rocmop::unload( std::string(mname, length)); }
double length(Vector3D *const v, int n)
static void unload(const std::string &mname)
Unloads Rocmop from Roccom.
Definition: Rocmop.C:120

Here is the call graph for this function:

std::ifstream& get_next_line ( std::ifstream &  Inf,
std::string &  line,
const char  noop 
)

Definition at line 125 of file Rocmop_2.C.

128 {
129  if(!Inf)
130  return(Inf);
131  std::getline(Inf,line);
132  while((line.empty() || line[0] == ' ' || line[0] == noop) && Inf)
133  std::getline(Inf,line);
134  return(Inf);
135 }
void Rocmop_load_module ( const char *  mname)

Definition at line 2357 of file Rocmop_2.C.

References Rocmop::load().

2358 { Rocmop::load( mname); }
static void load(const std::string &mname)
Loads Rocmop onto Roccom with a given module name.
Definition: Rocmop.C:88

Here is the call graph for this function:

void Rocmop_unload_module ( const char *  mname)

Definition at line 2360 of file Rocmop_2.C.

References Rocmop::unload().

2361 { Rocmop::unload( mname); }
static void unload(const std::string &mname)
Unloads Rocmop from Roccom.
Definition: Rocmop.C:120

Here is the call graph for this function: