Skip to content
Snippets Groups Projects
Select Git revision
  • e36ae0b3a796cf972ddef2852fd1ae530e7da8d3
  • master default protected
  • gdemesy-master-patch-25928
  • gdemesy-master-patch-34075
  • gdemesy-master-patch-27135
  • dev_photonics
6 results

getddm.html

Blame
  • HarmonicToTime.h 737 B
    // Gmsh - Copyright (C) 1997-2019 C. Geuzaine, J.-F. Remacle
    //
    // See the LICENSE.txt file for license information. Please report all
    // issues on https://gitlab.onelab.info/gmsh/gmsh/issues.
    
    #ifndef _HARMONIC_TO_TIME_H_
    #define _HARMONIC_TO_TIME_H_
    
    #include "Plugin.h"
    
    extern "C" {
    GMSH_Plugin *GMSH_RegisterHarmonicToTimePlugin();
    }
    
    class GMSH_HarmonicToTimePlugin : public GMSH_PostPlugin {
    public:
      GMSH_HarmonicToTimePlugin() {}
      std::string getName() const { return "HarmonicToTime"; }
      std::string getShortHelp() const
      {
        return "Transform harmonic data into time domain data";
      }
      std::string getHelp() const;
      int getNbOptions() const;
      StringXNumber *getOption(int iopt);
      PView *execute(PView *);
    };
    
    #endif