fixed writing out entries in advective bc
[OpenFOAM-1.6-ext.git] / src / lagrangian / molecularDynamics / molecule / interactionLists / referralLists / sendingReferralList.C
blobe17d80ed647d3685f8f31a7b83678d0985a38ac3
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright held by original author
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 the
13     Free Software Foundation; either version 2 of the License, or (at your
14     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, write to the Free Software Foundation,
23     Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
25 \*----------------------------------------------------------------------------*/
27 #include "sendingReferralList.H"
29 // * * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * //
31 Foam::sendingReferralList::sendingReferralList()
33     labelList(),
34     destinationProc_(-1)
38 Foam::sendingReferralList::sendingReferralList
40     const label destinationProc,
41     const labelList& cellsToSend
44     labelList(cellsToSend),
45     destinationProc_(destinationProc)
49 Foam::sendingReferralList::sendingReferralList
51     const sendingReferralList& rL
54     labelList(rL),
55     destinationProc_(rL.destinationProc())
59 // * * * * * * * * * * * * * * * * Destructor  * * * * * * * * * * * * * * * //
61 Foam::sendingReferralList::~sendingReferralList()
65 // * * * * * * * * * * * * * * * Member Operators  * * * * * * * * * * * * * //
67 void Foam::sendingReferralList::operator=(const sendingReferralList& rhs)
69     // Check for assignment to self
70     if (this == &rhs)
71     {
72         FatalErrorIn
73         (
74             "Foam::distribution::operator=(const Foam::distribution&)"
75         )
76             << "Attempted assignment to self"
77             << abort(FatalError);
78     }
80     labelList::operator=(rhs);
82     destinationProc_ = rhs.destinationProc();
86 // * * * * * * * * * * * * * * * Friend Operators  * * * * * * * * * * * * * //
88 bool operator==
90     const Foam::sendingReferralList& a,
91     const Foam::sendingReferralList& b
94     // Trivial reject: lists are different size
95     if (a.size() != b.size())
96     {
97         return false;
98     }
100     // Or if source processors are not the same.
101     if (a.destinationProc() != b.destinationProc())
102     {
103         return false;
104     }
106     Foam::List<bool> fnd(a.size(), false);
108     forAll (b, bI)
109     {
110         Foam::label curLabel = b[bI];
112         bool found = false;
114         forAll (a, aI)
115         {
116             if (a[aI] == curLabel)
117             {
118                 found = true;
119                 fnd[aI] = true;
120                 break;
121             }
122         }
124         if (!found)
125         {
126             return false;
127         }
128     }
130     // check if all labels on a were marked
131     bool result = true;
133     forAll (fnd, aI)
134     {
135         result = (result && fnd[aI]);
136     }
138     return result;
142 Foam::Istream& Foam::operator>>
144     Istream& is,
145     sendingReferralList& sRL
148     is  >> sRL.destinationProc_ >> static_cast<labelList&>(sRL);
150     is.check("Istream& operator<<(Istream& f, const sendingReferralList& sRL");
152     return is;
156 Foam::Ostream& Foam::operator<<
158     Ostream& os,
159     const sendingReferralList& rL
162     os  << rL.destinationProc() << token::SPACE
163         << static_cast< const labelList& >(rL);
165     os.check("Ostream& operator<<(Ostream& f, const sendingReferralList& rL");
167     return os;
171 // ************************************************************************* //