Ignore:
Timestamp:
01/11/17 13:50:02 (7 years ago)
Author:
mhnguyen
Message:

Try committing with rapidSvn. Attempt No2.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • XIOS/dev/dev_olga/src/node/field.hpp

    r1021 r1024  
    3737   class CStoreFilter; 
    3838   class CFileWriterFilter; 
     39   class CFileServerWriterFilter; 
    3940 
    4041   ///-------------------------------------------------------------- 
     
    121122         void solveGridDomainAxisBaseRef(); 
    122123 
     124         void solveAllEnabledFields(); 
     125         void checkGridOfEnabledFields(); 
     126         void sendGridOfEnabledFields(); 
     127 
    123128         void buildFilterGraph(CGarbageCollector& gc, bool enableOutput); 
    124129         boost::shared_ptr<COutputPin> getFieldReference(CGarbageCollector& gc); 
     
    143148        void sendUpdateData(const CArray<double,1>& data, CContextClient* client); 
    144149        static void recvUpdateData(CEventServer& event); 
    145         void recvUpdateData(vector<int>& ranks, vector<CBufferIn*>& buffers); 
     150        void recvUpdateData(std::map<int,CBufferIn*>& rankBuffers); 
    146151        void writeField(void); 
    147152        void sendReadDataRequest(const CDate& tsDataRequested); 
     
    179184        void sendAddAllVariables(); 
    180185        void sendAddAllVariables(CContextClient* client); 
     186        void writeUpdateData(const CArray<double,1>& data); 
     187 
    181188 
    182189        const std::vector<StdString>& getRefDomainAxisIds(); 
     
    204211 
    205212         map<int, CArray<double,1> > data_srv; 
     213         CArray<double,1> recvDataSrv; 
     214          
     215         boost::shared_ptr<func::CFunctor> recvFoperationSrv; 
    206216         string content; 
    207217 
     
    233243         //! The terminal filter which stores the instant data 
    234244         boost::shared_ptr<CStoreFilter> storeFilter; 
    235          //! The terminal filter which writes the data to file 
     245         //! The terminal filter which sends the data to file 
    236246         boost::shared_ptr<CFileWriterFilter> fileWriterFilter; 
     247         //! The terminal filter which writes data to file 
     248         boost::shared_ptr<CFileServerWriterFilter> fileServerWriterFilter; 
    237249   }; // class CField 
    238250 
Note: See TracChangeset for help on using the changeset viewer.