ENH: autoLayerDriver: better layering information message
[OpenFOAM-2.0.x.git] / src / dynamicMesh / meshCut / splitCell / splitCell.H
blob2cfff4cc12072f040369ac1b92b683c9bde6b998
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 2011 OpenFOAM Foundation
6      \\/     M anipulation  |
7 -------------------------------------------------------------------------------
8 License
9     This file is part of OpenFOAM.
11     OpenFOAM is free software: you can redistribute it and/or modify it
12     under the terms of the GNU General Public License as published by
13     the Free Software Foundation, either version 3 of the License, or
14     (at your option) any later version.
16     OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
17     ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18     FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
19     for more details.
21     You should have received a copy of the GNU General Public License
22     along with OpenFOAM.  If not, see <http://www.gnu.org/licenses/>.
24 Class
25     Foam::splitCell
27 Description
28     Description of cell after splitting. Contains cellLabel and pointers
29     to cells it it split in. See directedRefinement.
31 SourceFiles
32     splitCell.C
34 \*---------------------------------------------------------------------------*/
36 #ifndef splitCell_H
37 #define splitCell_H
39 #include "label.H"
41 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
43 namespace Foam
46 // Forward declaration of classes
48 /*---------------------------------------------------------------------------*\
49                            Class splitCell Declaration
50 \*---------------------------------------------------------------------------*/
52 class splitCell
54     // Private data
56         //- Unsplit cell label. Only uptodate if this cell is 'live'
57         //  (i.e. no master or slave)
58         label cellI_;
60         //- Parent splitCell or null
61         splitCell* parent_;
63         //- Cells replacing this or null
64         splitCell* master_;
66         splitCell* slave_;
69     // Private Member Functions
71         //- Disallow default bitwise copy construct
72         splitCell(const splitCell&);
74         //- Disallow default bitwise assignment
75         void operator=(const splitCell&);
78 public:
80     // Constructors
82         //- Construct from cell number and parent
83         splitCell(const label cellI, splitCell* parent);
86     //- Destructor
87     ~splitCell();
90     // Member Functions
92         // Access
94             label cellLabel() const
95             {
96                 return cellI_;
97             }
99             label& cellLabel()
100             {
101                 return cellI_;
102             }
104             splitCell* parent() const
105             {
106                 return parent_;
107             }
109             splitCell*& parent()
110             {
111                 return parent_;
112             }
114             splitCell* master() const
115             {
116                 return master_;
117             }
119             splitCell*& master()
120             {
121                 return master_;
122             }
124             splitCell* slave() const
125             {
126                 return slave_;
127             }
129             splitCell*& slave()
130             {
131                 return slave_;
132             }
134             //- Check if this is master cell of split
135             bool isMaster() const;
137             //- Check if this is unrefined (i.e. has no master or slave)
138             bool isUnrefined() const;
140             //- Returns other half of split cell. I.e. slave if this is master.
141             splitCell* getOther() const;
145 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
147 } // End namespace Foam
149 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
151 #endif
153 // ************************************************************************* //