Changeset 112:9db4adcc9250

Show
Ignore:
Timestamp:
02/16/2012 09:42:05 PM (15 months ago)
Author:
Andreas Schaefer <gentryx@…>
Branch:
default
Message:

added doc, cosmetics

Location:
src/parallelization/hiparsimulator
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • src/parallelization/hiparsimulator/openclstepper.h

    r100 r112  
    5555"\n" 
    5656"#include \"" + cellSourceFile + "\"\n" 
     57"\n" 
    5758#include <libgeodecomp/parallelization/hiparsimulator/escapedopenclkernel.h> 
    5859            ; 
  • src/parallelization/hiparsimulator/patchaccepter.h

    r109 r112  
    99namespace HiParSimulator { 
    1010 
     11/** 
     12 * The PatchAccepter collects grid snippets from steppers, either for 
     13 * IO or for ghostzone synchronization. 
     14 */ 
    1115template<class GRID_TYPE> 
    1216class PatchAccepter 
    1317{ 
     18    friend class PatchBufferTest; 
    1419public: 
    15     friend class PatchBufferTest; 
    16  
    1720    const static int DIM = GRID_TYPE::DIM; 
    1821 
  • src/parallelization/hiparsimulator/patchprovider.h

    r109 r112  
    1010namespace HiParSimulator { 
    1111 
     12/** 
     13 * PatchProvider fills in grid patches into a Stepper, which is 
     14 * important for ghostzone synchronization, but could be used for 
     15 * steering, too. 
     16 */ 
    1217template<class GRID_TYPE> 
    1318class PatchProvider