OPAL (Object Oriented Parallel Accelerator Library)  2.2.0
OPAL
Public Member Functions | Private Member Functions | Private Attributes | List of all members
OpalSimulation Class Reference

Concrete implementation of an Opal simulation wrapper. More...

#include <OpalSimulation.h>

Inheritance diagram for OpalSimulation:
Inheritance graph
[legend]
Collaboration diagram for OpalSimulation:
Collaboration graph
[legend]

Public Member Functions

 OpalSimulation (Expressions::Named_t objectives, Expressions::Named_t constraints, Param_t params, std::string name, MPI_Comm comm, CmdArguments_t args)
 
virtual ~OpalSimulation ()
 
void run ()
 
std::map< std::string,
std::vector< double > > 
getData (const std::vector< std::string > &statVariables)
 
void collectResults ()
 Parse SDDS stat file and build up requested variable dictionary. More...
 
void cleanUp ()
 
void cleanUp (const std::vector< std::string > &keep)
 remove temporary files except to the ones in 'keep' More...
 
reqVarContainer_t getResults ()
 returns container containing all requested variables with results More...
 
void setFilename (int id)
 set job id (SAMPLE command) More...
 
- Public Member Functions inherited from Simulation
 Simulation (CmdArguments_t args)
 
 ~Simulation ()
 
CmdArguments_t getArgs ()
 

Private Member Functions

void invalidBunch ()
 mark a solution as invalid More...
 
bool hasResultsAvailable ()
 check if we already have simulated the current set of design vars More...
 
void createSymlink_m (const std::string &path)
 create symbolic links More...
 
void copyH5_m ()
 copy H5 file More...
 
void setupSimulation ()
 create directories, input files, fieldmaps... More...
 
void setupFSStructure ()
 create directories, input files, symlinks... More...
 
void getVariableDictionary (variableDictionary_t &dictionary, const std::string &filename, const Expressions::Expr_t *const expression)
 get variables for expression evaluation from SDDS file. Can throw SDDSParserException More...
 
void redirectOutToFile ()
 redirect stdout and stderr to file More...
 
void restoreOut ()
 restore stdout and stderr to default More...
 

Private Attributes

std::string simulationName_
 identification of the simulation (corresponding to output filename) More...
 
std::string simulationDirName_
 full path of simulation directory (where simulation will be run) More...
 
std::string simTmpDir_
 temporary directory for simulation data (environment var SIMTMPDIR) More...
 
std::string pwd_
 holds current directory (for restoring) More...
 
std::streambuf * strm_buffer_
 stream buffer to redirect output More...
 
std::streambuf * strm_err_
 stream buffer to redirect stderr More...
 
std::map< std::string,
std::string > 
userVariables_
 variable dictionary holding requested optimizer values More...
 
reqVarContainer_t requestedVars_
 holds solutions returned to the optimizer More...
 
Expressions::Named_t objectives_
 
Expressions::Named_t constraints_
 
std::set< std::string > dvarNames_
 
MPI_Comm comm_
 
boost::scoped_ptr
< GenerateOpalSimulation
gs_
 object to generate simulation input files More...
 
int id_m
 job id (SAMPLE command) More...
 

Detailed Description

Concrete implementation of an Opal simulation wrapper.

See Also
http://amas.web.psi.ch

In order to work properly the user must ensure that the environment variables

are specified correctly.

Definition at line 30 of file OpalSimulation.h.

Constructor & Destructor Documentation

OpalSimulation::OpalSimulation ( Expressions::Named_t  objectives,
Expressions::Named_t  constraints,
Param_t  params,
std::string  name,
MPI_Comm  comm,
CmdArguments_t  args 
)

Setup OPAL run.

Parameters
[in]objectivesof the optimization problem
[in]constraintsof the optimization problem
[in]params
[in]nameof the simulation
[in]commMPI communicator used for running the simulation
[in]argscommand line arguments passed to the framework

Definition at line 40 of file OpalSimulation.cpp.

References dvarNames_, endl(), Hypervolume::fs, NativeHashGenerator::generate(), gs_, name, simTmpDir_, simulationDirName_, simulationName_, and userVariables_.

Here is the call graph for this function:

OpalSimulation::~OpalSimulation ( )
virtual

Definition at line 137 of file OpalSimulation.cpp.

References requestedVars_, and userVariables_.

Member Function Documentation

void OpalSimulation::cleanUp ( )

remove temporary simulation files (if Boost filesystem library is not available, this call do nothing).

Definition at line 616 of file OpalSimulation.cpp.

References comm_, endl(), Hypervolume::fs, and simulationDirName_.

Referenced by collectResults().

Here is the call graph for this function:

void OpalSimulation::cleanUp ( const std::vector< std::string > &  keep)

remove temporary files except to the ones in 'keep'

Definition at line 632 of file OpalSimulation.cpp.

References comm_, endl(), Expressions::find(), Hypervolume::fs, simulationDirName_, and Util::toUpper().

Here is the call graph for this function:

void OpalSimulation::collectResults ( )
virtual
void OpalSimulation::copyH5_m ( )
private

copy H5 file

Definition at line 175 of file OpalSimulation.cpp.

References endl(), Hypervolume::fs, Simulation::getArgs(), simulationDirName_, and simulationName_.

Referenced by setupFSStructure().

Here is the call graph for this function:

void OpalSimulation::createSymlink_m ( const std::string &  path)
private

create symbolic links

Definition at line 157 of file OpalSimulation.cpp.

References Physics::e, endl(), Hypervolume::fs, and simulationDirName_.

Referenced by setupFSStructure().

Here is the call graph for this function:

std::map< std::string, std::vector< double > > OpalSimulation::getData ( const std::vector< std::string > &  statVariables)
reqVarContainer_t OpalSimulation::getResults ( )
inlinevirtual

returns container containing all requested variables with results

Implements Simulation.

Definition at line 68 of file OpalSimulation.h.

References requestedVars_.

void OpalSimulation::getVariableDictionary ( variableDictionary_t dictionary,
const std::string &  filename,
const Expressions::Expr_t *const  expression 
)
private

get variables for expression evaluation from SDDS file. Can throw SDDSParserException

Definition at line 572 of file OpalSimulation.cpp.

References Expression::getReqVars(), and userVariables_.

Referenced by collectResults().

Here is the call graph for this function:

bool OpalSimulation::hasResultsAvailable ( )
private

check if we already have simulated the current set of design vars

Definition at line 142 of file OpalSimulation.cpp.

References endl(), simulationDirName_, and simulationName_.

Referenced by run().

Here is the call graph for this function:

void OpalSimulation::invalidBunch ( )
private

mark a solution as invalid

Definition at line 605 of file OpalSimulation.cpp.

References EVALUATE, objectives_, and requestedVars_.

Referenced by collectResults().

void OpalSimulation::redirectOutToFile ( )
private

redirect stdout and stderr to file

Definition at line 301 of file OpalSimulation.cpp.

References strm_buffer_, and strm_err_.

void OpalSimulation::restoreOut ( )
private

restore stdout and stderr to default

Definition at line 322 of file OpalSimulation.cpp.

References strm_buffer_, and strm_err_.

void OpalSimulation::run ( )
virtual

Calls Opal through Opal-lib wrapper and returns when simulation has either failed or finished.

Implements Simulation.

Definition at line 328 of file OpalSimulation.cpp.

References arg(), comm_, endl(), Hypervolume::fs, Simulation::getArgs(), hasResultsAvailable(), Options::info, Options::infoLevel, min(), pwd_, run_opal(), Options::seed, setupSimulation(), simulationDirName_, simulationName_, Options::warn, Options::warnLevel, ClassicException::what(), and ClassicException::where().

Here is the call graph for this function:

void OpalSimulation::setFilename ( int  id)
inline

set job id (SAMPLE command)

Definition at line 71 of file OpalSimulation.h.

References id_m.

void OpalSimulation::setupFSStructure ( )
private

create directories, input files, symlinks...

Definition at line 243 of file OpalSimulation.cpp.

References comm_, copyH5_m(), createSymlink_m(), Physics::e, endl(), Hypervolume::fs, gs_, simulationDirName_, and simulationName_.

Referenced by setupSimulation().

Here is the call graph for this function:

void OpalSimulation::setupSimulation ( )
private

create directories, input files, fieldmaps...

Definition at line 200 of file OpalSimulation.cpp.

References comm_, Hypervolume::fs, Simulation::getArgs(), OpalData::getInstance(), id_m, OpalData::setOptimizerFlag(), setupFSStructure(), simTmpDir_, simulationDirName_, and simulationName_.

Referenced by run().

Here is the call graph for this function:

Member Data Documentation

MPI_Comm OpalSimulation::comm_
private

Definition at line 100 of file OpalSimulation.h.

Referenced by cleanUp(), run(), setupFSStructure(), and setupSimulation().

Expressions::Named_t OpalSimulation::constraints_
private

Definition at line 97 of file OpalSimulation.h.

Referenced by collectResults().

std::set<std::string> OpalSimulation::dvarNames_
private

Definition at line 98 of file OpalSimulation.h.

Referenced by OpalSimulation().

boost::scoped_ptr<GenerateOpalSimulation> OpalSimulation::gs_
private

object to generate simulation input files

Definition at line 103 of file OpalSimulation.h.

Referenced by OpalSimulation(), and setupFSStructure().

int OpalSimulation::id_m
private

job id (SAMPLE command)

Definition at line 106 of file OpalSimulation.h.

Referenced by setFilename(), and setupSimulation().

Expressions::Named_t OpalSimulation::objectives_
private

Definition at line 96 of file OpalSimulation.h.

Referenced by collectResults(), and invalidBunch().

std::string OpalSimulation::pwd_
private

holds current directory (for restoring)

Definition at line 83 of file OpalSimulation.h.

Referenced by collectResults(), and run().

reqVarContainer_t OpalSimulation::requestedVars_
private

holds solutions returned to the optimizer

Definition at line 94 of file OpalSimulation.h.

Referenced by collectResults(), getResults(), invalidBunch(), and ~OpalSimulation().

std::string OpalSimulation::simTmpDir_
private

temporary directory for simulation data (environment var SIMTMPDIR)

Definition at line 80 of file OpalSimulation.h.

Referenced by OpalSimulation(), and setupSimulation().

std::string OpalSimulation::simulationDirName_
private

full path of simulation directory (where simulation will be run)

Definition at line 78 of file OpalSimulation.h.

Referenced by cleanUp(), collectResults(), copyH5_m(), createSymlink_m(), getData(), hasResultsAvailable(), OpalSimulation(), run(), setupFSStructure(), and setupSimulation().

std::string OpalSimulation::simulationName_
private

identification of the simulation (corresponding to output filename)

Definition at line 76 of file OpalSimulation.h.

Referenced by collectResults(), copyH5_m(), getData(), hasResultsAvailable(), OpalSimulation(), run(), setupFSStructure(), and setupSimulation().

std::streambuf* OpalSimulation::strm_buffer_
private

stream buffer to redirect output

Definition at line 86 of file OpalSimulation.h.

Referenced by redirectOutToFile(), and restoreOut().

std::streambuf* OpalSimulation::strm_err_
private

stream buffer to redirect stderr

Definition at line 88 of file OpalSimulation.h.

Referenced by redirectOutToFile(), and restoreOut().

std::map<std::string, std::string> OpalSimulation::userVariables_
private

variable dictionary holding requested optimizer values

Definition at line 91 of file OpalSimulation.h.

Referenced by getVariableDictionary(), OpalSimulation(), and ~OpalSimulation().


The documentation for this class was generated from the following files: