PSCF v1.2
pscfpp.command.Script Class Reference

Class to parse a PSCF command script. More...

Public Member Functions

 __init__ (self, filename=None)
 Constructor.
 
 read (self, filename)
 Read and parse a command script.
 
 __str__ (self)
 Return a string containing the command script.
 
 __getitem__ (self, key)
 Get a Command by integer index or command name.
 
 __len__ (self)
 Get the number of commands in the script.
 

Detailed Description

Class to parse a PSCF command script.

The Script class can read a command script file and store its contents in a form that allows particular commands to be accessed and modified.

**Construction and Parsing:**a

The constructor can take the name of a command file or an open file object as a parameter, and will read, parse and store the contents of the specified file.

Example: To parse a command file named 'command', one could enter

s = Script('command')

Accessing individual commands:

A Script object is a container for a list of child Command objects. Each command corresponds to one line in the command script, in which the first field is the label. Individual Command objects within a Script object can be accessed in either of two ways:

  • Command objects may be accessed by integer index using the square bracket notation for elements of a python list. If s is a Script, then s[2] is the 3rd command in the script.
  • Commands may also be accessed using square bracket notation using the command name (or label) string as a key. If the script contains several commands with the same name, a list of Command objects is returned, listed in the order in which they appeared.

String representation of individual Commands objects can be printed using the str() or print functions. Values of arguments of individual Command objects may then be accessed or modified using the param and setParam methods of class Command (see below).

Definition at line 44 of file command.py.

Constructor & Destructor Documentation

◆ __init__()

pscfpp.command.Script.__init__ ( self,
filename = None )

Constructor.

If supplied with a parameter "in" that is an open file or a file name string, this function reads and parses that command file and stores the contents in the resulting object.

If the parameter "in" is absent or equal to None, an empty object is created and returned.

Parameters
filenamefile name or open file object for input command file

Definition at line 58 of file command.py.

References pscfpp.command.Script._commands, pscfpp.command.Script._indices, Pscf::AmIteratorTmpl< Iterator, T >.read(), Pscf::AmIteratorTmpl< Compressor< D >, DArray< double > >.read(), Pscf::AmIteratorTmpl< Compressor< D >, DeviceArray< cudaReal > >.read(), Pscf::AmIteratorTmpl< Iterator, DArray< double > >.read(), Pscf::AmIteratorTmpl< Iterator< D >, DArray< double > >.read(), Pscf::AmIteratorTmpl< Iterator< D >, FieldCUDA >.read(), Pscf::Prdc::MaskGenFilmBase< D >.read(), Pscf::R1d::Mixture.read(), Pscf::Rpc::Analyzer< D >.read(), Pscf::Rpc::AnalyzerManager< D >.read(), Pscf::Rpc::AverageAnalyzer< D >.read(), Pscf::Rpc::AverageListAnalyzer< D >.read(), Pscf::Rpc::BasisFieldState< D >.read(), Pscf::Rpc::ConcentrationWriter< D >.read(), Pscf::Rpc::Domain< D >.read(), Pscf::Rpc::EinsteinCrystalPerturbation< D >.read(), Pscf::Rpc::ExplicitBdStep< D >.read(), Pscf::Rpc::ForceBiasMove< D >.read(), Pscf::Rpc::LinearSweep< D >.read(), Pscf::Rpc::LMBdStep< D >.read(), Pscf::Rpc::LrCompressor< D >.read(), Pscf::Rpc::Mixture< D >.read(), Pscf::Rpc::PredCorrBdStep< D >.read(), Pscf::Rpc::RealMove< D >.read(), Pscf::Rpc::TrajectoryWriter< D >.read(), Pscf::Rpg::AnalyzerManager< D >.read(), Pscf::Rpg::AverageAnalyzer< D >.read(), Pscf::Rpg::AverageListAnalyzer< D >.read(), Pscf::Rpg::BasisFieldState< D >.read(), Pscf::Rpg::ConcentrationWriter< D >.read(), Pscf::Rpg::EinsteinCrystalPerturbation< D >.read(), Pscf::Rpg::ExplicitBdStep< D >.read(), Pscf::Rpg::ForceBiasMove< D >.read(), Pscf::Rpg::FourierMove< D >.read(), Pscf::Rpg::LMBdStep< D >.read(), Pscf::Rpg::LrCompressor< D >.read(), Pscf::Rpg::McSimulator< D >.read(), Pscf::Rpg::Mixture< D >.read(), Pscf::Rpg::PredCorrBdStep< D >.read(), Pscf::Rpg::RealMove< D >.read(), Pscf::Rpg::TrajectoryWriter< D >.read(), pscfpp.command.Script.read(), pscfpp.field.Field.read(), pscfpp.output.Thermo.read(), pscfpp.param.Array.read(), pscfpp.param.Composite.read(), pscfpp.param.Matrix.read(), Util::Label.read(), and Util::ParamComposite.read().

Member Function Documentation

◆ read()

pscfpp.command.Script.read ( self,
filename )

Read and parse a command script.

Parameters
filenamefile name string or open file for command file

Definition at line 69 of file command.py.

References pscfpp.command.Script._commands, and pscfpp.command.Script._indices.

Referenced by pscfpp.command.Script.__init__(), pscfpp.field.Field.__init__(), pscfpp.output.Thermo.__init__(), pscfpp.param.Array.__init__(), pscfpp.param.Composite.__init__(), and pscfpp.param.Matrix.__init__().

◆ __str__()

pscfpp.command.Script.__str__ ( self)

Return a string containing the command script.

Definition at line 113 of file command.py.

References pscfpp.command.Script._commands.

Referenced by pscfpp.field.Field.write(), pscfpp.output.State.write(), and pscfpp.output.Thermo.write().

◆ __getitem__()

pscfpp.command.Script.__getitem__ ( self,
key )

Get a Command by integer index or command name.

Parameters
keyinteger index or command name string

Definition at line 124 of file command.py.

References pscfpp.command.Script._commands, and pscfpp.command.Script._indices.

◆ __len__()

pscfpp.command.Script.__len__ ( self)

Get the number of commands in the script.

Definition at line 143 of file command.py.

References pscfpp.command.Script._commands.


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