lsst.afw  21.0.0-34-g13549a6f6+8935f19055
Public Member Functions | Static Public Member Functions | Protected Member Functions | List of all members
lsst::afw::cameraGeom::Amplifier::Builder Class Referencefinal

A mutable Amplifier subclass class that can be used to incrementally construct or modify Amplifiers. More...

#include <Amplifier.h>

Inheritance diagram for lsst::afw::cameraGeom::Amplifier::Builder:
lsst::afw::cameraGeom::Amplifier

Public Member Functions

 Builder ()=default
 Construct a Builder with default values for all fields. More...
 
 Builder (Builder const &)=default
 Standard copy constructor. More...
 
 Builder (Builder &&)=default
 Standard move constructor. More...
 
 Builder (Amplifier const &other)
 Construct a Builder with values initialized from the given Amplifier. More...
 
Builderoperator= (Builder const &)=default
 Standard copy assignment. More...
 
Builderoperator= (Builder &&)=default
 Standard move assignment. More...
 
Builderoperator= (Amplifier const &other)
 Set the Builder's fields to those of the given Amplifier. More...
 
 ~Builder () noexcept override=default
 
std::shared_ptr< Amplifier const > finish () const
 Construct an immutable Amplifier with the same values as the Builder. More...
 
void setName (std::string const &name)
 Name of the amplifier. More...
 
void setBBox (lsst::geom::Box2I const &bbox)
 Bounding box of amplifier pixels in the trimmed, assembled image. More...
 
void setGain (double gain)
 Amplifier gain in e-/ADU. More...
 
void setReadNoise (double readNoise)
 Amplifier read noise, in e-. More...
 
void setSaturation (double saturation)
 Level in ADU above which pixels are considered saturated; use nan if no such level applies. More...
 
void setSuspectLevel (double suspectLevel)
 Level in ADU above which pixels are considered suspicious, meaning they may be affected by unknown systematics; for example if non-linearity corrections above a certain level are unstable then that would be a useful value for suspectLevel. More...
 
void setReadoutCorner (ReadoutCorner readoutCorner)
 Readout corner in the trimmed, assembled image. More...
 
void setLinearityCoeffs (ndarray::Array< double const, 1, 1 > const &coeffs)
 Vector of linearity coefficients. More...
 
void setLinearityType (std::string const &type)
 Name of linearity parameterization. More...
 
void setLinearityThreshold (double threshold)
 Level in ADU above which linearity should be applied. More...
 
void setLinearityMaximum (double maximum)
 Level in ADU above which the linearity relation is poorly defined. More...
 
void setLinearityUnits (std::string const &units)
 Units for the input to the linearity relation (DN). More...
 
void setRawBBox (lsst::geom::Box2I const &bbox)
 Bounding box of all amplifier pixels on untrimmed, assembled raw image. More...
 
void setRawDataBBox (lsst::geom::Box2I const &bbox)
 Bounding box of amplifier image pixels on untrimmed, assembled raw image. More...
 
void setRawFlipX (bool rawFlipX)
 Flip row order in transformation from untrimmed, assembled raw image to trimmed, assembled post-ISR image? More...
 
void setRawFlipY (bool rawFlipY)
 Flip column order in transformation from untrimmed, assembled raw image to trimmed, assembled post-ISR image? More...
 
void setRawXYOffset (lsst::geom::Extent2I const &xy)
 Offset in transformation from pre-raw, unassembled image to trimmed, assembled post-ISR image: final xy0 - pre-raw xy0. More...
 
void setRawHorizontalOverscanBBox (lsst::geom::Box2I const &bbox)
 The bounding box of horizontal overscan pixels in the assembled, untrimmed raw image. More...
 
void setRawVerticalOverscanBBox (lsst::geom::Box2I const &bbox)
 The bounding box of vertical overscan pixels in the assembled, untrimmed raw image. More...
 
void setRawPrescanBBox (lsst::geom::Box2I const &bbox)
 The bounding box of (horizontal) prescan pixels in the assembled, untrimmed raw image. More...
 
void setRawSerialOverscanBBox (lsst::geom::Box2I const &bbox)
 The bounding box of serial overscan pixels (equivalent to horizontal overscan pixels) in the assembled, untrimmed raw image. More...
 
void setRawParallelOverscanBBox (lsst::geom::Box2I const &bbox)
 The bounding box of parallel overscan pixels (equivalent to vertical overscan pixels) in the assembled, untrimmed raw image. More...
 
void setRawSerialPrescanBBox (lsst::geom::Box2I const &bbox)
 The bounding box of horizontal/serial prescan pixels in the assembled, untrimmed raw image. More...
 
void setRawHorizontalPrescanBBox (lsst::geom::Box2I const &bbox)
 The bounding box of horizontal/serial prescan pixels in the assembled, untrimmed raw image. More...
 
void toRecord (table::BaseRecord &record) const
 Copy the Amplifier's fields into the given record. More...
 
Builder rebuild () const
 Return a Builder object initialized with the fields of this. More...
 
std::string getName () const
 Name of the amplifier. More...
 
lsst::geom::Box2I getBBox () const
 Bounding box of amplifier pixels in the trimmed, assembled image. More...
 
double getGain () const
 Amplifier gain in e-/ADU. More...
 
double getReadNoise () const
 Amplifier read noise, in e-. More...
 
double getSaturation () const
 Level in ADU above which pixels are considered saturated; use nan if no such level applies. More...
 
double getSuspectLevel () const
 Level in ADU above which pixels are considered suspicious, meaning they may be affected by unknown systematics; for example if non-linearity corrections above a certain level are unstable then that would be a useful value for suspectLevel. More...
 
ReadoutCorner getReadoutCorner () const
 Readout corner in the trimmed, assembled image. More...
 
ndarray::Array< double const, 1, 1 > getLinearityCoeffs () const
 Vector of linearity coefficients. More...
 
std::string getLinearityType () const
 Name of linearity parameterization. More...
 
double getLinearityThreshold () const
 Level in ADU above which linearity should be applied. More...
 
double getLinearityMaximum () const
 Level in ADU above which the linearity relation is poorly defined. More...
 
std::string getLinearityUnits () const
 Units for the input to the linearity relation (DN). More...
 
lsst::geom::Box2I getRawBBox () const
 Bounding box of all amplifier pixels on untrimmed, assembled raw image. More...
 
lsst::geom::Box2I getRawDataBBox () const
 Bounding box of amplifier image pixels on untrimmed, assembled raw image. More...
 
bool getRawFlipX () const
 Flip row order in transformation from untrimmed, assembled raw image to trimmed, assembled post-ISR image? More...
 
bool getRawFlipY () const
 Flip column order in transformation from untrimmed, assembled raw image to trimmed, assembled post-ISR image? More...
 
lsst::geom::Extent2I getRawXYOffset () const
 Offset in transformation from pre-raw, unassembled image to trimmed, assembled post-ISR image: final xy0 - pre-raw xy0. More...
 
lsst::geom::Box2I getRawHorizontalOverscanBBox () const
 The bounding box of horizontal overscan pixels in the assembled, untrimmed raw image. More...
 
lsst::geom::Box2I getRawVerticalOverscanBBox () const
 The bounding box of vertical overscan pixels in the assembled, untrimmed raw image. More...
 
lsst::geom::Box2I getRawPrescanBBox () const
 The bounding box of (horizontal) prescan pixels in the assembled, untrimmed raw image. More...
 
lsst::geom::Box2I getRawSerialOverscanBBox () const
 The bounding box of serial overscan pixels (equivalent to horizontal overscan pixels) in the assembled, untrimmed raw image. More...
 
lsst::geom::Box2I getRawParallelOverscanBBox () const
 The bounding box of parallel overscan pixels (equivalent to vertical overscan pixels) in the assembled, untrimmed raw image. More...
 
lsst::geom::Box2I getRawSerialPrescanBBox () const
 The bounding box of horizontal/serial prescan pixels in the assembled, untrimmed raw image. More...
 
lsst::geom::Box2I getRawHorizontalPrescanBBox () const
 The bounding box of horizontal/serial prescan pixels in the assembled, untrimmed raw image. More...
 

Static Public Member Functions

static Builder fromRecord (table::BaseRecord const &record)
 Construct a new Builder object from the fields in the given record. More...
 
static table::Schema getRecordSchema ()
 Return the schema used in the afw.table representation of amplifiers. More...
 

Protected Member Functions

Fields const & getFields () const override
 

Detailed Description

A mutable Amplifier subclass class that can be used to incrementally construct or modify Amplifiers.

Definition at line 276 of file Amplifier.h.

Constructor & Destructor Documentation

◆ Builder() [1/4]

Construct a Builder with default values for all fields.

◆ Builder() [2/4]

Standard copy constructor.

◆ Builder() [3/4]

Standard move constructor.

◆ Builder() [4/4]

Construct a Builder with values initialized from the given Amplifier.

Definition at line 273 of file Amplifier.cc.

◆ ~Builder()

lsst::afw::cameraGeom::Amplifier::Builder::~Builder ( )
overridedefaultnoexcept

Member Function Documentation

◆ finish()

std::shared_ptr< Amplifier const > lsst::afw::cameraGeom::Amplifier::Builder::finish ( ) const

Construct an immutable Amplifier with the same values as the Builder.

The derived type of the return instance is unspecified, and should be considered an implementation detail.

Definition at line 282 of file Amplifier.cc.

◆ fromRecord()

Amplifier::Builder lsst::afw::cameraGeom::Amplifier::Builder::fromRecord ( table::BaseRecord const &  record)
static

Construct a new Builder object from the fields in the given record.

Parameters
[in]recordRecord to copy fields from.

Definition at line 286 of file Amplifier.cc.

◆ getBBox()

lsst::geom::Box2I lsst::afw::cameraGeom::Amplifier::getBBox ( ) const
inlineinherited

Bounding box of amplifier pixels in the trimmed, assembled image.

Definition at line 115 of file Amplifier.h.

◆ getFields()

Fields const& lsst::afw::cameraGeom::Amplifier::Builder::getFields ( ) const
inlineoverrideprotectedvirtual

Implements lsst::afw::cameraGeom::Amplifier.

Definition at line 407 of file Amplifier.h.

◆ getGain()

double lsst::afw::cameraGeom::Amplifier::getGain ( ) const
inlineinherited

Amplifier gain in e-/ADU.

Definition at line 118 of file Amplifier.h.

◆ getLinearityCoeffs()

ndarray::Array<double const, 1, 1> lsst::afw::cameraGeom::Amplifier::getLinearityCoeffs ( ) const
inlineinherited

Vector of linearity coefficients.

Definition at line 142 of file Amplifier.h.

◆ getLinearityMaximum()

double lsst::afw::cameraGeom::Amplifier::getLinearityMaximum ( ) const
inlineinherited

Level in ADU above which the linearity relation is poorly defined.

Should be set to the saturation level if no other value is known.

Definition at line 156 of file Amplifier.h.

◆ getLinearityThreshold()

double lsst::afw::cameraGeom::Amplifier::getLinearityThreshold ( ) const
inlineinherited

Level in ADU above which linearity should be applied.

This should be set to 0.0 if no other value is known.

Definition at line 150 of file Amplifier.h.

◆ getLinearityType()

std::string lsst::afw::cameraGeom::Amplifier::getLinearityType ( ) const
inlineinherited

Name of linearity parameterization.

Definition at line 145 of file Amplifier.h.

◆ getLinearityUnits()

std::string lsst::afw::cameraGeom::Amplifier::getLinearityUnits ( ) const
inlineinherited

Units for the input to the linearity relation (DN).

Definition at line 159 of file Amplifier.h.

◆ getName()

std::string lsst::afw::cameraGeom::Amplifier::getName ( ) const
inlineinherited

Name of the amplifier.

Definition at line 112 of file Amplifier.h.

◆ getRawBBox()

lsst::geom::Box2I lsst::afw::cameraGeom::Amplifier::getRawBBox ( ) const
inlineinherited

Bounding box of all amplifier pixels on untrimmed, assembled raw image.

Definition at line 165 of file Amplifier.h.

◆ getRawDataBBox()

lsst::geom::Box2I lsst::afw::cameraGeom::Amplifier::getRawDataBBox ( ) const
inlineinherited

Bounding box of amplifier image pixels on untrimmed, assembled raw image.

Definition at line 171 of file Amplifier.h.

◆ getRawFlipX()

bool lsst::afw::cameraGeom::Amplifier::getRawFlipX ( ) const
inlineinherited

Flip row order in transformation from untrimmed, assembled raw image to trimmed, assembled post-ISR image?

Definition at line 177 of file Amplifier.h.

◆ getRawFlipY()

bool lsst::afw::cameraGeom::Amplifier::getRawFlipY ( ) const
inlineinherited

Flip column order in transformation from untrimmed, assembled raw image to trimmed, assembled post-ISR image?

Definition at line 183 of file Amplifier.h.

◆ getRawHorizontalOverscanBBox()

lsst::geom::Box2I lsst::afw::cameraGeom::Amplifier::getRawHorizontalOverscanBBox ( ) const
inlineinherited

The bounding box of horizontal overscan pixels in the assembled, untrimmed raw image.

Definition at line 195 of file Amplifier.h.

◆ getRawHorizontalPrescanBBox()

lsst::geom::Box2I lsst::afw::cameraGeom::Amplifier::getRawHorizontalPrescanBBox ( ) const
inlineinherited

The bounding box of horizontal/serial prescan pixels in the assembled, untrimmed raw image.

This duplicates the getRawPrescanBBox method for legacy reasons.

Definition at line 231 of file Amplifier.h.

◆ getRawParallelOverscanBBox()

lsst::geom::Box2I lsst::afw::cameraGeom::Amplifier::getRawParallelOverscanBBox ( ) const
inlineinherited

The bounding box of parallel overscan pixels (equivalent to vertical overscan pixels) in the assembled, untrimmed raw image.

This duplicates the getRawVerticalOverscanBBox method for legacy reasons.

Definition at line 221 of file Amplifier.h.

◆ getRawPrescanBBox()

lsst::geom::Box2I lsst::afw::cameraGeom::Amplifier::getRawPrescanBBox ( ) const
inlineinherited

The bounding box of (horizontal) prescan pixels in the assembled, untrimmed raw image.

Definition at line 207 of file Amplifier.h.

◆ getRawSerialOverscanBBox()

lsst::geom::Box2I lsst::afw::cameraGeom::Amplifier::getRawSerialOverscanBBox ( ) const
inlineinherited

The bounding box of serial overscan pixels (equivalent to horizontal overscan pixels) in the assembled, untrimmed raw image.

This duplicates the getRawHorizontalOverscanBBox method for legacy reasons.

Definition at line 214 of file Amplifier.h.

◆ getRawSerialPrescanBBox()

lsst::geom::Box2I lsst::afw::cameraGeom::Amplifier::getRawSerialPrescanBBox ( ) const
inlineinherited

The bounding box of horizontal/serial prescan pixels in the assembled, untrimmed raw image.

This duplicates the getRawPrescanBBox method for legacy reasons.

Definition at line 228 of file Amplifier.h.

◆ getRawVerticalOverscanBBox()

lsst::geom::Box2I lsst::afw::cameraGeom::Amplifier::getRawVerticalOverscanBBox ( ) const
inlineinherited

The bounding box of vertical overscan pixels in the assembled, untrimmed raw image.

Definition at line 201 of file Amplifier.h.

◆ getRawXYOffset()

lsst::geom::Extent2I lsst::afw::cameraGeom::Amplifier::getRawXYOffset ( ) const
inlineinherited

Offset in transformation from pre-raw, unassembled image to trimmed, assembled post-ISR image: final xy0 - pre-raw xy0.

Definition at line 189 of file Amplifier.h.

◆ getReadNoise()

double lsst::afw::cameraGeom::Amplifier::getReadNoise ( ) const
inlineinherited

Amplifier read noise, in e-.

Definition at line 121 of file Amplifier.h.

◆ getReadoutCorner()

ReadoutCorner lsst::afw::cameraGeom::Amplifier::getReadoutCorner ( ) const
inlineinherited

Readout corner in the trimmed, assembled image.

Definition at line 139 of file Amplifier.h.

◆ getRecordSchema()

table::Schema lsst::afw::cameraGeom::Amplifier::getRecordSchema ( )
staticinherited

Return the schema used in the afw.table representation of amplifiers.

Definition at line 267 of file Amplifier.cc.

◆ getSaturation()

double lsst::afw::cameraGeom::Amplifier::getSaturation ( ) const
inlineinherited

Level in ADU above which pixels are considered saturated; use nan if no such level applies.

Definition at line 127 of file Amplifier.h.

◆ getSuspectLevel()

double lsst::afw::cameraGeom::Amplifier::getSuspectLevel ( ) const
inlineinherited

Level in ADU above which pixels are considered suspicious, meaning they may be affected by unknown systematics; for example if non-linearity corrections above a certain level are unstable then that would be a useful value for suspectLevel.

Use nan if no such level applies.

Definition at line 136 of file Amplifier.h.

◆ operator=() [1/3]

Amplifier::Builder & lsst::afw::cameraGeom::Amplifier::Builder::operator= ( Amplifier const &  other)

Set the Builder's fields to those of the given Amplifier.

Definition at line 275 of file Amplifier.cc.

◆ operator=() [2/3]

Builder& lsst::afw::cameraGeom::Amplifier::Builder::operator= ( Builder &&  )
default

Standard move assignment.

◆ operator=() [3/3]

Builder& lsst::afw::cameraGeom::Amplifier::Builder::operator= ( Builder const &  )
default

Standard copy assignment.

◆ rebuild()

Amplifier::Builder lsst::afw::cameraGeom::Amplifier::rebuild ( ) const
inherited

Return a Builder object initialized with the fields of this.

This is simply a shortcut for Amplifier::Builder(*this).

Definition at line 271 of file Amplifier.cc.

◆ setBBox()

void lsst::afw::cameraGeom::Amplifier::Builder::setBBox ( lsst::geom::Box2I const &  bbox)
inline

Bounding box of amplifier pixels in the trimmed, assembled image.

Definition at line 322 of file Amplifier.h.

◆ setGain()

void lsst::afw::cameraGeom::Amplifier::Builder::setGain ( double  gain)
inline

Amplifier gain in e-/ADU.

Definition at line 325 of file Amplifier.h.

◆ setLinearityCoeffs()

void lsst::afw::cameraGeom::Amplifier::Builder::setLinearityCoeffs ( ndarray::Array< double const, 1, 1 > const &  coeffs)
inline

Vector of linearity coefficients.

Definition at line 340 of file Amplifier.h.

◆ setLinearityMaximum()

void lsst::afw::cameraGeom::Amplifier::Builder::setLinearityMaximum ( double  maximum)
inline

Level in ADU above which the linearity relation is poorly defined.

Should be set to the saturation level if no other value is known.

Definition at line 351 of file Amplifier.h.

◆ setLinearityThreshold()

void lsst::afw::cameraGeom::Amplifier::Builder::setLinearityThreshold ( double  threshold)
inline

Level in ADU above which linearity should be applied.

This should be set to 0.0 if no other value is known.

Definition at line 348 of file Amplifier.h.

◆ setLinearityType()

void lsst::afw::cameraGeom::Amplifier::Builder::setLinearityType ( std::string const &  type)
inline

Name of linearity parameterization.

Definition at line 345 of file Amplifier.h.

◆ setLinearityUnits()

void lsst::afw::cameraGeom::Amplifier::Builder::setLinearityUnits ( std::string const &  units)
inline

Units for the input to the linearity relation (DN).

Definition at line 354 of file Amplifier.h.

◆ setName()

void lsst::afw::cameraGeom::Amplifier::Builder::setName ( std::string const &  name)
inline

Name of the amplifier.

Definition at line 319 of file Amplifier.h.

◆ setRawBBox()

void lsst::afw::cameraGeom::Amplifier::Builder::setRawBBox ( lsst::geom::Box2I const &  bbox)
inline

Bounding box of all amplifier pixels on untrimmed, assembled raw image.

Definition at line 357 of file Amplifier.h.

◆ setRawDataBBox()

void lsst::afw::cameraGeom::Amplifier::Builder::setRawDataBBox ( lsst::geom::Box2I const &  bbox)
inline

Bounding box of amplifier image pixels on untrimmed, assembled raw image.

Definition at line 360 of file Amplifier.h.

◆ setRawFlipX()

void lsst::afw::cameraGeom::Amplifier::Builder::setRawFlipX ( bool  rawFlipX)
inline

Flip row order in transformation from untrimmed, assembled raw image to trimmed, assembled post-ISR image?

Definition at line 363 of file Amplifier.h.

◆ setRawFlipY()

void lsst::afw::cameraGeom::Amplifier::Builder::setRawFlipY ( bool  rawFlipY)
inline

Flip column order in transformation from untrimmed, assembled raw image to trimmed, assembled post-ISR image?

Definition at line 366 of file Amplifier.h.

◆ setRawHorizontalOverscanBBox()

void lsst::afw::cameraGeom::Amplifier::Builder::setRawHorizontalOverscanBBox ( lsst::geom::Box2I const &  bbox)
inline

The bounding box of horizontal overscan pixels in the assembled, untrimmed raw image.

Definition at line 372 of file Amplifier.h.

◆ setRawHorizontalPrescanBBox()

void lsst::afw::cameraGeom::Amplifier::Builder::setRawHorizontalPrescanBBox ( lsst::geom::Box2I const &  bbox)
inline

The bounding box of horizontal/serial prescan pixels in the assembled, untrimmed raw image.

This duplicates the getRawPrescanBBox method for legacy reasons.

Definition at line 402 of file Amplifier.h.

◆ setRawParallelOverscanBBox()

void lsst::afw::cameraGeom::Amplifier::Builder::setRawParallelOverscanBBox ( lsst::geom::Box2I const &  bbox)
inline

The bounding box of parallel overscan pixels (equivalent to vertical overscan pixels) in the assembled, untrimmed raw image.

This duplicates the getRawVerticalOverscanBBox method for legacy reasons.

Definition at line 392 of file Amplifier.h.

◆ setRawPrescanBBox()

void lsst::afw::cameraGeom::Amplifier::Builder::setRawPrescanBBox ( lsst::geom::Box2I const &  bbox)
inline

The bounding box of (horizontal) prescan pixels in the assembled, untrimmed raw image.

Definition at line 382 of file Amplifier.h.

◆ setRawSerialOverscanBBox()

void lsst::afw::cameraGeom::Amplifier::Builder::setRawSerialOverscanBBox ( lsst::geom::Box2I const &  bbox)
inline

The bounding box of serial overscan pixels (equivalent to horizontal overscan pixels) in the assembled, untrimmed raw image.

This duplicates the getRawHorizontalOverscanBBox method for legacy reasons.

Definition at line 387 of file Amplifier.h.

◆ setRawSerialPrescanBBox()

void lsst::afw::cameraGeom::Amplifier::Builder::setRawSerialPrescanBBox ( lsst::geom::Box2I const &  bbox)
inline

The bounding box of horizontal/serial prescan pixels in the assembled, untrimmed raw image.

This duplicates the getRawPrescanBBox method for legacy reasons.

Definition at line 397 of file Amplifier.h.

◆ setRawVerticalOverscanBBox()

void lsst::afw::cameraGeom::Amplifier::Builder::setRawVerticalOverscanBBox ( lsst::geom::Box2I const &  bbox)
inline

The bounding box of vertical overscan pixels in the assembled, untrimmed raw image.

Definition at line 377 of file Amplifier.h.

◆ setRawXYOffset()

void lsst::afw::cameraGeom::Amplifier::Builder::setRawXYOffset ( lsst::geom::Extent2I const &  xy)
inline

Offset in transformation from pre-raw, unassembled image to trimmed, assembled post-ISR image: final xy0 - pre-raw xy0.

Definition at line 369 of file Amplifier.h.

◆ setReadNoise()

void lsst::afw::cameraGeom::Amplifier::Builder::setReadNoise ( double  readNoise)
inline

Amplifier read noise, in e-.

Definition at line 328 of file Amplifier.h.

◆ setReadoutCorner()

void lsst::afw::cameraGeom::Amplifier::Builder::setReadoutCorner ( ReadoutCorner  readoutCorner)
inline

Readout corner in the trimmed, assembled image.

Definition at line 337 of file Amplifier.h.

◆ setSaturation()

void lsst::afw::cameraGeom::Amplifier::Builder::setSaturation ( double  saturation)
inline

Level in ADU above which pixels are considered saturated; use nan if no such level applies.

Definition at line 331 of file Amplifier.h.

◆ setSuspectLevel()

void lsst::afw::cameraGeom::Amplifier::Builder::setSuspectLevel ( double  suspectLevel)
inline

Level in ADU above which pixels are considered suspicious, meaning they may be affected by unknown systematics; for example if non-linearity corrections above a certain level are unstable then that would be a useful value for suspectLevel.

Use nan if no such level applies.

Definition at line 334 of file Amplifier.h.

◆ toRecord()

void lsst::afw::cameraGeom::Amplifier::toRecord ( table::BaseRecord record) const
inherited

Copy the Amplifier's fields into the given record.

Parameters
[out]recordRecord to modify. record.getSchema().contains(this->getRecordSchema()) must be true.

Definition at line 322 of file Amplifier.cc.


The documentation for this class was generated from the following files: