source: XIOS/dev/XIOS_DEV_CMIP6/src/node/grid.hpp @ 1442

Last change on this file since 1442 was 1422, checked in by oabramkina, 6 years ago

Correcting a typo in r1421.

  • Property copyright set to
    Software name : XIOS (Xml I/O Server)
    http://forge.ipsl.jussieu.fr/ioserver
    Creation date : January 2009
    Licence : CeCCIL version2
    see license file in root directory : Licence_CeCILL_V2-en.txt
    or http://www.cecill.info/licences/Licence_CeCILL_V2-en.html
    Holder : CEA/LSCE (Laboratoire des Sciences du CLimat et de l'Environnement)
    CNRS/IPSL (Institut Pierre Simon Laplace)
    Project Manager : Yann Meurdesoif
    yann.meurdesoif@cea.fr
  • Property svn:executable set to *
File size: 23.1 KB
RevLine 
[591]1#ifndef __XIOS_CGrid__
2#define __XIOS_CGrid__
[219]3
[591]4/// XIOS headers ///
5#include "xios_spl.hpp"
[219]6#include "group_factory.hpp"
7
8#include "declare_group.hpp"
9#include "domain.hpp"
10#include "axis.hpp"
[887]11#include "scalar.hpp"
[369]12#include "array_new.hpp"
13#include "attribute_array.hpp"
[552]14#include "distribution_server.hpp"
[553]15#include "client_server_mapping.hpp"
[567]16#include "utils.hpp"
[619]17#include "transformation_enum.hpp"
[219]18
[335]19namespace xios {
[509]20
[1421]21   /// ////////////////////// Dᅵᅵclarations ////////////////////// ///
[219]22
23   class CGridGroup;
24   class CGridAttributes;
[540]25   class CDomainGroup;
26   class CAxisGroup;
[887]27   class CScalarGroup;
[219]28   class CGrid;
[551]29   class CDistributionClient;
[552]30   class CDistributionServer;
[553]31   class CServerDistributionDescription;
32   class CClientServerMapping;
[620]33   class CGridTransformation;
[219]34
35   ///--------------------------------------------------------------
36
37   // Declare/Define CGridAttribute
38   BEGIN_DECLARE_ATTRIBUTE_MAP(CGrid)
39#  include "grid_attribute.conf"
40   END_DECLARE_ATTRIBUTE_MAP(CGrid)
41
42   ///--------------------------------------------------------------
43
44   class CGrid
45      : public CObjectTemplate<CGrid>
46      , public CGridAttributes
47   {
48         /// typedef ///
49         typedef CObjectTemplate<CGrid>   SuperClass;
50         typedef CGridAttributes SuperClassAttribute;
51
[676]52      public:
[219]53
54         typedef CGridAttributes RelAttributes;
55         typedef CGridGroup      RelGroup;
56
[300]57         enum EEventId
58         {
[887]59           EVENT_ID_INDEX, EVENT_ID_ADD_DOMAIN, EVENT_ID_ADD_AXIS, EVENT_ID_ADD_SCALAR
[650]60         };
[509]61
[219]62         /// Constructeurs ///
63         CGrid(void);
[650]64         explicit CGrid(const StdString& id);
65         CGrid(const CGrid& grid);       // Not implemented yet.
66         CGrid(const CGrid* const grid); // Not implemented yet.
[219]67
68         /// Traitements ///
[509]69//         void solveReference(void);
[219]70
[676]71         void checkEligibilityForCompressedOutput();
72
[509]73         void solveDomainAxisRef(bool areAttributesChecked);
74
75         void checkMaskIndex(bool doCalculateIndex);
76
[650]77 //        virtual void toBinary  (StdOStream& os) const;
78//         virtual void fromBinary(StdIStream& is);
[219]79
[676]80         void addRelFileCompressed(const StdString& filename);
81
[219]82         /// Tests ///
[676]83         bool isCompressible(void) const;
84         bool isWrittenCompressed(const StdString& filename) const;
[219]85
[676]86      public:
[219]87
88         /// Accesseurs ///
[1158]89         StdSize getDimension(void);
[509]90
[286]91         StdSize  getDataSize(void) const;
[219]92
[1421]93         /// Entrᅵᅵes-sorties de champs
[369]94         template <int n>
[593]95         void inputField(const CArray<double,n>& field, CArray<double,1>& stored) const;
96         template <int n>
[1250]97         void outputField(const CArray<double,1>& stored, CArray<double,n>& field) const; 
98         template <int n>
99         void uncompressField(const CArray<double,n>& data, CArray<double,1>& outData) const; 
[509]100
[650]101         virtual void parse(xml::CXMLNode& node);
[540]102
[219]103         /// Destructeur ///
104         virtual ~CGrid(void);
105
[676]106      public:
[219]107
108         /// Accesseurs statiques ///
109         static StdString GetName(void);
110         static StdString GetDefName(void);
[509]111
[219]112         static ENodeType GetType(void);
113
114         /// Instanciateurs Statiques ///
[347]115         static CGrid* createGrid(CDomain* domain);
116         static CGrid* createGrid(CDomain* domain, CAxis* axis);
[745]117         static CGrid* createGrid(const std::vector<CDomain*>& domains, const std::vector<CAxis*>& axis,
[887]118                                  const CArray<int,1>& axisDomainOrder = CArray<int,1>());
[745]119         static CGrid* createGrid(StdString id, const std::vector<CDomain*>& domains, const std::vector<CAxis*>& axis,
[887]120                                  const std::vector<CScalar*>& scalars, const CArray<int,1>& axisDomainOrder = CArray<int,1>());
121         static CGrid* createGrid(const std::vector<CDomain*>& domains, const std::vector<CAxis*>& axis,
122                                  const std::vector<CScalar*>& scalars, const CArray<int,1>& axisDomainOrder);
[745]123         static StdString generateId(const std::vector<CDomain*>& domains, const std::vector<CAxis*>& axis,
[887]124                                     const std::vector<CScalar*>& scalars, const CArray<int,1>& axisDomainOrder = CArray<int,1>());
[823]125         static StdString generateId(const CGrid* gridSrc, const CGrid* gridDest);
126         static CGrid* cloneGrid(const StdString& idNewGrid, CGrid* gridSrc);
[219]127
[1144]128      public:           
[219]129         void computeIndexServer(void);
130         void computeIndex(void);
[586]131         void computeIndexScalarGrid();
[1129]132         void computeWrittenIndex();
[219]133
[509]134         void solveDomainRef(bool checkAtt);
135         void solveAxisRef(bool checkAtt);
[887]136         void solveScalarRef(bool checkAtt);
[540]137         void solveDomainAxisRefInheritance(bool apply = true);
[619]138         void solveTransformations();
[775]139         void solveDomainAxisBaseRef();
[509]140
[835]141         CDomain* addDomain(const std::string& id=StdString());
142         CAxis* addAxis(const std::string& id=StdString());
[887]143         CScalar* addScalar(const std::string& id=StdString());
[540]144         void sendAddDomain(const std::string& id="");
145         void sendAddAxis(const std::string& id="");
[887]146         void sendAddScalar(const std::string& id="");
[540]147         void sendAllDomains();
148         void sendAllAxis();
[887]149         void sendAllScalars();
[540]150
[650]151         static void recvAddDomain(CEventServer& event);
152         void recvAddDomain(CBufferIn& buffer);
153         static void recvAddAxis(CEventServer& event);
154         void recvAddAxis(CBufferIn& buffer);
[887]155         static void recvAddScalar(CEventServer& event);
156         void recvAddScalar(CBufferIn& buffer);
[540]157
[650]158         static bool dispatchEvent(CEventServer& event);
159         static void recvIndex(CEventServer& event);
160         void recvIndex(vector<int> ranks, vector<CBufferIn*> buffers);
161         void sendIndex(void);
[586]162         void sendIndexScalarGrid();
[509]163
[1294]164         void setContextClient(CContextClient* contextClient);
165
[509]166         void computeDomConServer();
167         std::map<int, int> getDomConServerSide();
[1330]168         std::map<int, StdSize> getAttributesBufferSize(CContextClient* client, bool bufferForWriting = false);
169         std::map<int, StdSize> getDataBufferSize(CContextClient* client, const std::string& id = "", bool bufferForWriting = false);
[540]170         std::vector<StdString> getDomainList();
171         std::vector<StdString> getAxisList();
[887]172         std::vector<StdString> getScalarList();
[540]173         std::vector<CDomain*> getDomains();
174         std::vector<CAxis*> getAxis();
[887]175         std::vector<CScalar*> getScalars();
[943]176         CDomain* getDomain(int domainIndex);
177         CAxis* getAxis(int axisIndex);
178         CScalar* getScalar(int scalarIndex);
[551]179         std::vector<int> getAxisOrder();
[567]180         std::vector<int> getGlobalDimension();
[1236]181         bool isScalarGrid() const;         
[540]182
[567]183         bool doGridHaveDataToWrite();
[1235]184         bool doGridHaveDataDistributed(CContextClient* client = 0);
[567]185         size_t getWrittenDataSize() const;
[676]186         int getNumberWrittenIndexes() const;
187         int getTotalNumberWrittenIndexes() const;
188         int getOffsetWrittenIndexes() const;
[567]189
[834]190         CDistributionServer* getDistributionServer();
191         CDistributionClient* getDistributionClient();
[620]192         CGridTransformation* getTransformations();
[567]193
[632]194         void transformGrid(CGrid* transformGridSrc);
[775]195         void completeGrid(CGrid* transformGridSrc = 0);
[687]196         void doAutoDistribution(CGrid* transformGridSrc);
[619]197         bool isTransformed();
198         void setTransformed();
[890]199         bool isGenerated();
200         void setGenerated();
[823]201         void addTransGridSource(CGrid* gridSrc);
202         std::map<CGrid*, std::pair<bool,StdString> >& getTransGridSource();
[824]203         bool hasTransform();
[1215]204         size_t getGlobalWrittenSize(void) ;
[1397]205         void getLocalMask(CArray<bool,1>& localMask) ;
206         template<int N>
207         void getLocalMask(const CArray<bool,N>& gridMask, CArray<bool,1>& localMask) ;
[219]208      public:
[650]209         CArray<int, 1> storeIndex_client;
[509]210
[1263]211/** Map containing indexes that will be sent in sendIndex(). */
[1243]212         std::map<CContextClient*, map<int, CArray<int, 1> > > storeIndex_toSrv;
213
[1263]214/** Map storing the number of senders. Key = size of receiver's intracomm */
215         std::map<int, std::map<int,int> > nbSenders;
216
217         std::map<CContextClient*, std::map<int,int> > nbReadSenders;
218
[1236]219         map<int, CArray<int, 1> > storeIndex_fromSrv; // Support, for now, reading with level-1 server
[1243]220
[1294]221         map<int, CArray<size_t, 1> > outIndexFromClient;  // Deprecated
[1243]222
[1294]223         map<int, CArray<size_t, 1> > compressedOutIndexFromClient;
[1129]224
[1294]225/** Map storing received indexes. Key = sender rank, value = index array. */
226         map<int, CArray<size_t, 1> > outGlobalIndexFromClient;
227
228// Manh Ha's comment: " A client receives global index from other clients (via recvIndex)
229// then does mapping these index into local index of STORE_CLIENTINDEX
230// In this way, store_clientIndex can be used as an input of a source filter
231// Maybe we need a flag to determine whether a client wants to write. TODO "
232
233/** Map storing received data. Key = sender rank, value = data array.
234 *  The map is created in CGrid::computeClientIndex and filled upon receiving data in CField::recvUpdateData() */
[1129]235         map<int, CArray<size_t, 1> > outLocalIndexStoreOnClient; 
236
[1294]237/** Indexes calculated based on server-like distribution.
238 *  They are used for writing/reading data and only calculated for server level that does the writing/reading.
239 *  Along with localIndexToWriteOnClient, these indexes are used to correctly place incoming data. */
[1243]240         CArray<size_t,1> localIndexToWriteOnServer;
[1129]241
[1294]242/** Indexes calculated based on client-like distribution.
243 *  They are used for writing/reading data and only calculated for server level that does the writing/reading.
244 *  Along with localIndexToWriteOnServer, these indexes are used to correctly place incoming data. */
[1243]245         CArray<size_t,1> localIndexToWriteOnClient;
246
[1025]247         CArray<size_t,1> indexFromClients;
[1294]248
[650]249         void checkMask(void);
[821]250         void createMask(void);
[1129]251         void modifyMask(const CArray<int,1>& indexToModify, bool valueToModify = false);
252         void modifyMaskSize(const std::vector<int>& newDimensionSize, bool newValue = false);
[509]253
[742]254         void computeGridGlobalDimension(const std::vector<CDomain*>& domains,
255                                         const std::vector<CAxis*>& axis,
[887]256                                         const std::vector<CScalar*>& scalars,
257                                         const CArray<int,1>& axisDomainOrder);
[742]258
[540]259      private:
[567]260       template<int N>
261       void checkGridMask(CArray<bool,N>& gridMask,
[664]262                          const std::vector<CArray<bool,1>* >& domainMasks,
[567]263                          const std::vector<CArray<bool,1>* >& axisMasks,
[887]264                          const CArray<int,1>& axisDomainOrder,
[821]265                          bool createMask = false);
[623]266        template<int N>
[1129]267        void modifyGridMask(CArray<bool,N>& gridMask, const CArray<int,1>& indexToModify, bool valueToModify);
[623]268
[1129]269        template<int N>
270        void modifyGridMaskSize(CArray<bool,N>& gridMask, const std::vector<int>& eachDimSize, bool newValue);
271
[1144]272        void storeField_arr(const double* const data, CArray<double, 1>& stored) const;
273        void restoreField_arr(const CArray<double, 1>& stored, double* const data) const;
[1250]274        void uncompressField_arr(const double* const data, CArray<double, 1>& outData) const;
[1144]275
[540]276        void setVirtualDomainGroup(CDomainGroup* newVDomainGroup);
277        void setVirtualAxisGroup(CAxisGroup* newVAxisGroup);
[887]278        void setVirtualScalarGroup(CScalarGroup* newVScalarGroup);
[567]279
[887]280        void setDomainList(const std::vector<CDomain*> domains = std::vector<CDomain*>());
[540]281        void setAxisList(const std::vector<CAxis*> axis = std::vector<CAxis*>());
[887]282        void setScalarList(const std::vector<CScalar*> scalars = std::vector<CScalar*>());
[540]283
[887]284        CDomainGroup* getVirtualDomainGroup() const;
[540]285        CAxisGroup* getVirtualAxisGroup() const;
[887]286        CScalarGroup* getVirtualScalarGroup() const;
[619]287
[657]288        void checkAttributesAfterTransformation();
[619]289        void setTransformationAlgorithms();
[865]290        void computeIndexByElement(const std::vector<boost::unordered_map<size_t,std::vector<int> > >& indexServerOnElement,
[1263]291                                   const CContextClient* client,
[865]292                                   CClientServerMapping::GlobalIndexMap& globalIndexOnServer);
[1158]293        int computeGridGlobalDimension(std::vector<int>& globalDim,
294                                       const std::vector<CDomain*> domains,
295                                       const std::vector<CAxis*> axis,
296                                       const std::vector<CScalar*> scalars,
297                                       const CArray<int,1>& axisDomainOrder);
298        int getDistributedDimension();
[619]299
[1025]300        void computeClientIndex();
301        void computeConnectedClients();
[1202]302        void computeClientIndexScalarGrid(); 
303        void computeConnectedClientsScalarGrid(); 
[1025]304
[540]305      private:
[1236]306
[1294]307/** Clients that have to send a grid. There can be multiple clients in case of secondary server, otherwise only one client. */
[1353]308        std::list<CContextClient*> clients;
309        std::set<CContextClient*> clientsSet;
[1294]310
311        bool isChecked;
312        bool isDomainAxisChecked;
313        bool isIndexSent;
314
[540]315        CDomainGroup* vDomainGroup_;
316        CAxisGroup* vAxisGroup_;
[887]317        CScalarGroup* vScalarGroup_;
318        std::vector<std::string> axisList_, domList_, scalarList_;
319        bool isAxisListSet, isDomListSet, isScalarListSet;
[567]320
[1294]321/** Client-like distribution calculated based on the knowledge of the entire grid */
[551]322        CDistributionClient* clientDistribution_;
[1243]323
[1294]324/** Server-like distribution calculated upon receiving indexes */
[552]325        CDistributionServer* serverDistribution_;
[1243]326
[568]327        CClientServerMapping* clientServerMap_;
[567]328        size_t writtenDataSize_;
[676]329        int numberWrittenIndexes_, totalNumberWrittenIndexes_, offsetWrittenIndexes_;
[1243]330
[1330]331/** Map storing local ranks of connected receivers. Key = size of receiver's intracomm.
332  * It is calculated in computeConnectedClients(). */
[1263]333        std::map<int, std::vector<int> > connectedServerRank_;
[1243]334
[1330]335/** Map storing the size of data to be send. Key = size of receiver's intracomm
336  * It is calculated in computeConnectedClients(). */
[1263]337        std::map<int, std::map<int,size_t> > connectedDataSize_;
[1243]338
[1330]339/** Ranks of connected receivers in case of reading. It is calculated in recvIndex(). */
340        std::vector<int> connectedServerRankRead_;
341
342/** Size of data to be send in case of reading. It is calculated in recvIndex(). */
343        std::map<int,size_t> connectedDataSizeRead_;
344
[1165]345        bool isDataDistributed_;       
[676]346         //! True if and only if the data defined on the grid can be outputted in a compressed way
347        bool isCompressible_;
348        std::set<std::string> relFilesCompressed;
[619]349
[1129]350        bool isTransformed_, isGenerated_;
351        bool computedWrittenIndex_;
[620]352        std::vector<int> axisPositionInGrid_;
353        CGridTransformation* transformations_;
[1158]354        bool hasDomainAxisBaseRef_;       
[823]355        std::map<CGrid*, std::pair<bool,StdString> > gridSrc_;
[824]356        bool hasTransform_;
[1243]357
[1263]358/** Map storing global indexes of server-like (band-wise) distribution for sending to receivers.
359  * Key = size of receiver's intracomm.
360  */
361//        std::map<CContextClient*, CClientServerMapping::GlobalIndexMap> globalIndexOnServer_;
362        std::map<int, CClientServerMapping::GlobalIndexMap> globalIndexOnServer_;
[1243]363
[1263]364
[1243]365/** List order of axis and domain in a grid, if there is a domain, it will take value 1 (true), axis 0 (false) */
[887]366        std::vector<int> order_;
[1243]367
[219]368   }; // class CGrid
369
370   ///--------------------------------------------------------------
371
[369]372   template <int n>
[567]373   void CGrid::inputField(const CArray<double,n>& field, CArray<double,1>& stored) const
[219]374   {
[1294]375//#ifdef __XIOS_DEBUG
[369]376      if (this->getDataSize() != field.numElements())
377         ERROR("void CGrid::inputField(const  CArray<double,n>& field, CArray<double,1>& stored) const",
[680]378                << "[ Awaiting data of size = " << this->getDataSize() << ", "
[421]379                << "Received data size = "      << field.numElements() << " ] "
[955]380                << "The data array does not have the right size! "
[1343]381                << "Grid = " << this->getId())
[1294]382//#endif
[650]383      this->storeField_arr(field.dataFirst(), stored);
[219]384   }
385
[593]386   template <int n>
387   void CGrid::outputField(const CArray<double,1>& stored, CArray<double,n>& field) const
388   {
[1294]389//#ifdef __XIOS_DEBUG
[593]390      if (this->getDataSize() != field.numElements())
391         ERROR("void CGrid::outputField(const CArray<double,1>& stored, CArray<double,n>& field) const",
392                << "[ Size of the data = " << this->getDataSize() << ", "
393                << "Output data size = "   << field.numElements() << " ] "
[955]394                << "The ouput array does not have the right size! "
[1343]395                << "Grid = " << this->getId())
[1294]396//#endif
[593]397      this->restoreField_arr(stored, field.dataFirst());
398   }
399
[1250]400   /*!
401     This function removes the effect of mask on received data on the server.
402     This function only serve for the checking purpose. TODO: Something must be done to seperate mask and data_index from each other in received data
403     \data data received data with masking effect on the server
404     \outData data without masking effect
405   */
406   template <int N>
407   void CGrid::uncompressField(const CArray<double,N>& data, CArray<double,1>& outData) const
408   {     
409     uncompressField_arr(data.dataFirst(), outData);
410   }
411
[567]412   template<int N>
413   void CGrid::checkGridMask(CArray<bool,N>& gridMask,
[664]414                             const std::vector<CArray<bool,1>* >& domainMasks,
[567]415                             const std::vector<CArray<bool,1>* >& axisMasks,
[887]416                             const CArray<int,1>& axisDomainOrder,
[821]417                             bool createMask)
[567]418   {
419     int idx = 0;
420     int numElement = axisDomainOrder.numElements();
[650]421     int dim = domainMasks.size() * 2 + axisMasks.size();
[664]422     std::vector<CDomain*> domainP = this->getDomains();
[1421]423     std::vector<CAxis*> axisP = this->getAxis();
[567]424
425     std::vector<int> idxLoop(dim,0), indexMap(numElement), eachDimSize(dim);
426     std::vector<int> currentIndex(dim);
427     int idxDomain = 0, idxAxis = 0;
428    for (int i = 0; i < numElement; ++i)
429    {
430      indexMap[i] = idx;
[887]431      if (2 == axisDomainOrder(i)) {
[664]432          eachDimSize[indexMap[i]]   = domainP[idxDomain]->ni;
433          eachDimSize[indexMap[i]+1] = domainP[idxDomain]->nj;
[567]434          idx += 2; ++idxDomain;
435      }
[887]436      else if (1 == axisDomainOrder(i)) {
[1421]437//        eachDimSize[indexMap[i]] = axisMasks[idxAxis]->numElements();
438        eachDimSize[indexMap[i]] = axisP[idxAxis]->n;
[567]439        ++idx; ++idxAxis;
440      }
[976]441      else {};
[567]442    }
443
[821]444    if (!gridMask.isEmpty() && !createMask)
[567]445    {
446      for (int i = 0; i < dim; ++i)
447      {
448        if (gridMask.extent(i) != eachDimSize[i])
[680]449          ERROR("CGrid::checkMask(void)",
450                << "The mask has one dimension whose size is different from the one of the local grid." << std::endl
451                << "Local size of dimension " << i << " is " << eachDimSize[i] << "." << std::endl
[955]452                << "Mask size for dimension " << i << " is " << gridMask.extent(i) << "." << std::endl
[1343]453                << "Grid = " << this->getId())
[567]454      }
455    }
456    else {
457        CArrayBoolTraits<CArray<bool,N> >::resizeArray(gridMask,eachDimSize);
458        gridMask = true;
459    }
460
461    int ssize = gridMask.numElements();
462    idx = 0;
463    while (idx < ssize)
464    {
465      for (int i = 0; i < dim-1; ++i)
466      {
467        if (idxLoop[i] == eachDimSize[i])
468        {
469          idxLoop[i] = 0;
470          ++idxLoop[i+1];
471        }
472      }
473
474      // Find out outer index
475      idxDomain = idxAxis = 0;
476      bool maskValue = true;
477      for (int i = 0; i < numElement; ++i)
478      {
[887]479        if (2 == axisDomainOrder(i))
[567]480        {
[1390]481          int idxTmp = idxLoop[indexMap[i]] + idxLoop[indexMap[i]+1] * eachDimSize[indexMap[i]];
482          if (idxTmp < (*domainMasks[idxDomain]).numElements())
483            maskValue = maskValue && (*domainMasks[idxDomain])(idxTmp);
484          else
485            maskValue = false;
[567]486          ++idxDomain;
487        }
[887]488        else if (1 == axisDomainOrder(i))
[567]489        {
[1421]490          int idxTmp = idxLoop[indexMap[i]];
[1422]491          if (idxTmp < (*axisMasks[idxAxis]).numElements())
[1421]492            maskValue = maskValue && (*axisMasks[idxAxis])(idxTmp);
493          else
494            maskValue = false;
495
[567]496          ++idxAxis;
497        }
498      }
499
500      int maskIndex = idxLoop[0];
501      int mulDim = 1;
502      for (int k = 1; k < dim; ++k)
503      {
504        mulDim *= eachDimSize[k-1];
505        maskIndex += idxLoop[k]*mulDim;
506      }
[623]507      *(gridMask.dataFirst()+maskIndex) &= maskValue;
[567]508
509      ++idxLoop[0];
510      ++idx;
511    }
512
513   }
514
[1129]515   template<int N>
516   void CGrid::modifyGridMaskSize(CArray<bool,N>& gridMask,
517                                  const std::vector<int>& eachDimSize,
518                                  bool newValue)
519   {
520      if (N != eachDimSize.size())
521      {
522        // ERROR("CGrid::modifyGridMaskSize(CArray<bool,N>& gridMask,
523        //                                  const std::vector<int>& eachDimSize,
524        //                                  bool newValue)",
525        //       << "Dimension size of the mask is different from input dimension size." << std::endl
526        //       << "Mask dimension is " << N << "." << std::endl
527        //       << "Input dimension is " << eachDimSize.size() << "." << std::endl
[1343]528        //       << "Grid = " << this->getId())
[1129]529      }
530      CArrayBoolTraits<CArray<bool,N> >::resizeArray(gridMask,eachDimSize);
531      gridMask = newValue;
532   }
533                                 
534
[623]535   /*!
536     Modify the current mask of grid, the local index to be modified will take value false
537     \param [in/out] gridMask current mask of grid
538     \param [in] indexToModify local index to modify
539   */
540   template<int N>
[1129]541   void CGrid::modifyGridMask(CArray<bool,N>& gridMask, const CArray<int,1>& indexToModify, bool valueToModify)
542   {     
[623]543     int num = indexToModify.numElements();
544     for (int idx = 0; idx < num; ++idx)
545     {
546       *(gridMask.dataFirst()+indexToModify(idx)) = valueToModify;
547     }
548   }
[219]549   ///--------------------------------------------------------------
550
[1397]551
552/*!
553  A grid can have multiple dimension, so can its mask in the form of multi-dimension array.
554It's not a good idea to store all multi-dimension arrays corresponding to each mask.
555One of the ways is to convert this array into 1-dimension one and every process is taken place on it.
556  \param [in] multi-dimension array grid mask
557*/
558template<int N>
559void CGrid::getLocalMask(const CArray<bool,N>& gridMask, CArray<bool,1>& localMask)
560{
[1401]561  if (gridMask.isEmpty()) return ;
[1397]562  int dim = gridMask.dimensions();
563  std::vector<int> dimensionSizes(dim);
564  for (int i = 0; i < dim; ++i) dimensionSizes[i] = gridMask.extent(i);
565
566  std::vector<int> idxLoop(dim,0);
567  int ssize = gridMask.numElements(), idx = 0;
568  localMask.resize(ssize);
569  while (idx < ssize)
570  {
571    for (int i = 0; i < dim-1; ++i)
572    {
573      if (idxLoop[i] == dimensionSizes[i])
574      {
575        idxLoop[i] = 0;
576        ++idxLoop[i+1];
577      }
578    }
579
580    int maskIndex = idxLoop[0];
581    int mulDim = 1;
582    for (int k = 1; k < dim; ++k)
583    {
584      mulDim *= dimensionSizes[k-1];
585      maskIndex += idxLoop[k]*mulDim;
586    }
587    localMask(maskIndex) = *(gridMask.dataFirst()+maskIndex);
588
589    ++idxLoop[0];
590    ++idx;
591  }
592}
593
[219]594   // Declare/Define CGridGroup and CGridDefinition
595   DECLARE_GROUP(CGrid);
596
597   ///--------------------------------------------------------------
598
[335]599} // namespace xios
[219]600
[591]601#endif // __XIOS_CGrid__
Note: See TracBrowser for help on using the repository browser.