ALPS Home Libraries License Support People ALPS Web Site

PrevUpHomeNext

Class Process

alps::Process

Synopsis

// In header: <alps/osiris/process.h>


class Process {
public:
  // construct/copy/destruct
  Process(int);
  Process();

  // public member functions
  void load(IDump &);
  void save(ODump &) const;
  bool valid() const;
  bool local() const;
  operator int() const;
  bool operator==(const Process &) const;
  bool operator!=(const Process &) const;
  bool operator<(const Process &) const;
};

Description

a process descriptor.

Process public construct/copy/destruct

  1. Process(int);
  2. Process();

Process public member functions

  1. void load(IDump &);
  2. void save(ODump &) const;
  3. bool valid() const;
  4. bool local() const;
  5. operator int() const;
  6. bool operator==(const Process & p) const;
  7. bool operator!=(const Process & p) const;
  8. bool operator<(const Process & p) const;
    sorting criterion for two processes?
Copyright © 1994, 2002-2005 Matthias Troyer, Synge Todo

PrevUpHomeNext