~ubuntu-branches/ubuntu/vivid/gyoto/vivid

« back to all changes in this revision

Viewing changes to include/GyotoPatternDisk.h

  • Committer: Package Import Robot
  • Author(s): Thibaut Paumard
  • Date: 2014-10-21 14:21:10 UTC
  • mfrom: (8.2.4 sid)
  • Revision ID: package-import@ubuntu.com-20141021142110-1u2odjj2r0hvdh5g
Tags: 0.2.3-1
* New upstream release
* Move to debian-astro team

Show diffs side-by-side

added added

removed removed

Lines of Context:
125
125
  /**
126
126
   * Unit: radians per geometrical unit time.
127
127
   */
128
 
  virtual void   setPatternVelocity(double); ///< Set PatternDisk::Omega_
129
 
  virtual double getPatternVelocity(); ///< Get PatternDisk::Omega_
 
128
  virtual void   patternVelocity(double); ///< Set PatternDisk::Omega_
 
129
  virtual double patternVelocity(); ///< Get PatternDisk::Omega_
130
130
 
 
131
#ifdef GYOTO_USE_CFITSIO
131
132
  /// Read parameters and arrays from FITS file
132
133
  virtual void fitsRead(std::string filename_);
133
134
 
134
135
  /// Write parameters and arrays to FITS file
135
136
  virtual void fitsWrite(std::string filename_);
136
 
 
 
137
#endif
137
138
 
138
139
  /// Set PatternDisk::emission_
139
140
  /**
163
164
   *  - previously allocated array will not be freed automatically;
164
165
   *  - array attached when the destructor is called will be freed.
165
166
   */
166
 
  void setRadius(double * pattern);
 
167
  void radius(double * pattern);
167
168
 
168
169
  /// Set PatternDisk::emission_
169
170
  /**
204
205
   */
205
206
  virtual void copyOpacity(double const * const pattern = NULL,
206
207
                              size_t const naxes[3] = NULL);
207
 
  virtual double const * getOpacity() const; ///< Get PatternDisk::opacity_
 
208
  virtual double const * opacity() const; ///< Get PatternDisk::opacity_
208
209
 
209
210
  /// Set PatternDisk::velocity_
210
211
  /**