~ubuntu-branches/ubuntu/saucy/ifrit/saucy

« back to all changes in this revision

Viewing changes to core/iparticlegroupparallelpipeline.h

  • Committer: Bazaar Package Importer
  • Author(s): Mark Hymers
  • Date: 2006-10-28 15:06:32 UTC
  • mfrom: (1.1.4 upstream) (2.1.1 etch)
  • Revision ID: james.westby@ubuntu.com-20061028150632-hyvuhvsv6zpmf5ev
Tags: 3.0.5-1
New upstream version. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*=========================================================================
2
 
 
3
 
  Program:   Ionization FRont Interactive Tool (IFRIT)
4
 
  Language:  C++
5
 
 
6
 
 
7
 
Copyright (c) 2002-2006 Nick Gnedin 
8
 
All rights reserved.
9
 
 
10
 
This file may be distributed and/or modified under the terms of the
11
 
GNU General Public License version 2 as published by the Free Software
12
 
Foundation and appearing in the file LICENSE.GPL included in the
13
 
packaging of this file.
14
 
 
15
 
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS''
16
 
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17
 
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18
 
ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE FOR
19
 
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20
 
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
21
 
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
22
 
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
23
 
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
24
 
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25
 
 
26
 
=========================================================================*/
27
 
 
28
 
 
29
 
#ifndef IPARTICLEGROUPPARALLELPIPELINE_H
30
 
#define IPARTICLEGROUPPARALLELPIPELINE_H
31
 
 
32
 
 
33
 
#include "iparallelpipeline.h"
34
 
 
35
 
 
36
 
#include "iserialpipeline.h"
37
 
 
38
 
class iParticleGroup;
39
 
 
40
 
 
41
 
class iParticleGroupParallelPipeline : public iParallelPolyDataToPolyDataPipeline
42
 
{
43
 
 
44
 
        friend class iParticleGroup;
45
 
 
46
 
public:
47
 
        
48
 
        //
49
 
        //  Pipeline operation
50
 
        //
51
 
        void UpdateAttToSize();
52
 
        void UpdateType();
53
 
        void UpdateFixedSize();
54
 
        void UpdateReplicas();
55
 
        void UpdateSizeFunction();
56
 
 
57
 
protected:
58
 
        
59
 
        iParticleGroupParallelPipeline(iParticleGroup *s);
60
 
        virtual ~iParticleGroupParallelPipeline();
61
 
 
62
 
        virtual iPolyDataToPolyDataPipeline* CreateSerialPipeline();
63
 
 
64
 
        iParticleGroup *mParent;
65
 
};
66
 
 
67
 
#endif // IPARTICLEGROUPPARALLELPIPELINE_H
68