Salome HOME
A forgotten C++ test
[tools/medcoupling.git] / src / ParaMEDMEM / ParaFIELD.hxx
index 2f5f8936712a53fd665fcf452a5c8b979d304cd1..fe0a6f9d7e0656c4cc5916dbc13fb9d31b2e00c1 100644 (file)
@@ -35,13 +35,10 @@ namespace ParaMEDMEM
   class ParaFIELD
   {
   public:
-
     ParaFIELD(TypeOfField type, TypeOfTimeDiscretization td, ParaMESH* mesh, const ComponentTopology& component_topology); 
-
-
     ParaFIELD(MEDCouplingFieldDouble* field, ParaMESH *sup, const ProcessorGroup& group);
-  
     virtual ~ParaFIELD();
+
     void synchronizeTarget( ParaMEDMEM::ParaFIELD* source_field);
     void synchronizeSource( ParaMEDMEM::ParaFIELD* target_field);
     MEDCouplingFieldDouble* getField() const { return _field; }
@@ -53,6 +50,7 @@ namespace ParaMEDMEM
     int nbComponents() const;
     double getVolumeIntegral(int icomp, bool isWAbs) const;
     double getL2Norm()const { return -1; }
+
   private:
     MEDCouplingFieldDouble* _field;
     ParaMEDMEM::ComponentTopology _component_topology;