Back to home page

EIC code displayed by LXR

 
 

    


Warning, /include/Geant4/tools/impi_world is written in an unsupported language. File is not indexed.

0001 // Copyright (C) 2010, Guy Barrand. All rights reserved.
0002 // See the file tools.license for terms.
0003 
0004 #ifndef tools_impi_world
0005 #define tools_impi_world
0006 
0007 #include <string>
0008 
0009 namespace tools {
0010 
0011 class impi_world {
0012 public:
0013   virtual ~impi_world(){}
0014 public:
0015   virtual bool init(int*,char***) = 0;
0016   virtual bool rank(int& a_rank) const = 0;
0017   virtual bool size(int& a_size) const = 0;
0018   virtual bool processor_name(std::string&) const = 0;
0019 };
0020 
0021 }
0022 
0023 #endif