Main Page   Class Hierarchy   Alphabetical List   Compound List   File List   Compound Members   File Members  

MachineBroker.h

Go to the documentation of this file.
00001 /* ****************************************************************** **
00002 **    OpenSees - Open System for Earthquake Engineering Simulation    **
00003 **          Pacific Earthquake Engineering Research Center            **
00004 **                                                                    **
00005 **                                                                    **
00006 ** (C) Copyright 1999, The Regents of the University of California    **
00007 ** All Rights Reserved.                                               **
00008 **                                                                    **
00009 ** Commercial use of this program without express permission of the   **
00010 ** University of California, Berkeley, is strictly prohibited.  See   **
00011 ** file 'COPYRIGHT'  in main directory for information on usage and   **
00012 ** redistribution,  and for a DISCLAIMER OF ALL WARRANTIES.           **
00013 **                                                                    **
00014 ** Developed by:                                                      **
00015 **   Frank McKenna (fmckenna@ce.berkeley.edu)                         **
00016 **   Gregory L. Fenves (fenves@ce.berkeley.edu)                       **
00017 **   Filip C. Filippou (filippou@ce.berkeley.edu)                     **
00018 **                                                                    **
00019 ** ****************************************************************** */
00020                                                                         
00021 // $Revision: 1.1.1.1 $
00022 // $Date: 2000/09/15 08:23:16 $
00023 // $Source: /usr/local/cvs/OpenSees/SRC/actor/machineBroker/MachineBroker.h,v $
00024                                                                         
00025                                                                         
00026 // File: ~/actor/broker/MachineBroker.h
00027 //
00028 // Written: fmk
00029 // Created: 11/96
00030 // Revision: A
00031 //
00032 // Purpose: This file contains the class definition for MachineBroker.
00033 // MachineBroker is an abstract base class, a subclass of which must
00034 // be written for each parallel machine. A MachineBroker is responsible
00035 // for getting an actor process running on the parallel machine.
00036 //
00037 // What: "@(#) MachineBroker.h, revA"
00038 
00039 #ifndef MachineBroker_h
00040 #define MachineBroker_h
00041 
00042 #include <Channel.h>
00043 
00054 class MachineBroker
00055 {
00056   public:
00059     MachineBroker() {};
00060 
00065     virtual ~MachineBroker() {};
00066 
00067 
00076     virtual int startActor(char *actorProgram, 
00077 
00078       Channel &theChannel,
00079       int compDemand =0) =0;
00080 
00081   protected:
00082     
00083   private:
00084 
00085 };
00086 
00087 #endif
Copyright Contact Us