$treeview $search $mathjax
Palabos  Version 1.1
$projectbrief
$projectbrief
$searchbox

multiBlockOperations3D.h

Go to the documentation of this file.
00001 /* This file is part of the Palabos library.
00002  *
00003  * Copyright (C) 2011 FlowKit Sarl
00004  * Avenue de Chailly 23
00005  * 1012 Lausanne, Switzerland
00006  * E-mail contact: contact@flowkit.com
00007  *
00008  * The most recent release of Palabos can be downloaded at 
00009  * <http://www.palabos.org/>
00010  *
00011  * The library Palabos is free software: you can redistribute it and/or
00012  * modify it under the terms of the GNU Affero General Public License as
00013  * published by the Free Software Foundation, either version 3 of the
00014  * License, or (at your option) any later version.
00015  *
00016  * The library is distributed in the hope that it will be useful,
00017  * but WITHOUT ANY WARRANTY; without even the implied warranty of
00018  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00019  * GNU Affero General Public License for more details.
00020  *
00021  * You should have received a copy of the GNU Affero General Public License
00022  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
00023 */
00024 
00028 #ifndef MULTI_BLOCK_OPERATIONS_3D_H
00029 #define MULTI_BLOCK_OPERATIONS_3D_H
00030 
00031 #include "core/globalDefs.h"
00032 #include "core/blockStatistics.h"
00033 #include "core/geometry3D.h"
00034 #include <vector>
00035 
00036 namespace plb {
00037 
00038 class MultiBlock3D;
00039 struct DataProcessorGenerator3D;
00040 class ReductiveDataProcessorGenerator3D;
00041 
00042 void executeDataProcessor( DataProcessorGenerator3D const& generator,
00043                            std::vector<MultiBlock3D*> multiBlocks );
00044 
00045 void executeDataProcessor( DataProcessorGenerator3D const& generator,
00046                            MultiBlock3D& object );
00047 
00048 void executeDataProcessor( DataProcessorGenerator3D const& generator,
00049                            MultiBlock3D& object1, MultiBlock3D& object2 );
00050 
00051 
00052 void executeDataProcessor( ReductiveDataProcessorGenerator3D& generator,
00053                            std::vector<MultiBlock3D*> multiBlocks );
00054 
00055 void executeDataProcessor( ReductiveDataProcessorGenerator3D& generator,
00056                            MultiBlock3D& object );
00057 
00058 void executeDataProcessor( ReductiveDataProcessorGenerator3D& generator,
00059                            MultiBlock3D& object1, MultiBlock3D& object2 );
00060 
00061 
00062 void addInternalProcessor( DataProcessorGenerator3D const& generator,
00063                            std::vector<MultiBlock3D*> multiBlocks, plint level=0 );
00064 
00065 void addInternalProcessor( DataProcessorGenerator3D const& generator,
00066                            MultiBlock3D& object, plint level=0 );
00067 
00068 void addInternalProcessor( DataProcessorGenerator3D const& generator,
00069                            MultiBlock3D& object1, MultiBlock3D& object2,
00070                            plint level=0 );
00071 
00072 } // namespace plb
00073 
00074 #endif  // MULTI_BLOCK_OPERATIONS_3D_H