likelihoodDetectionModule
Class AcquisitionSettings

java.lang.Object
  extended by likelihoodDetectionModule.AcquisitionSettings
All Implemented Interfaces:
java.io.Serializable

public class AcquisitionSettings
extends java.lang.Object
implements java.io.Serializable

The AcquisitionSettings class provides a module-local storage object for holding on to the properties of the audio data source (acquisition module) upon which the module is depending.

See Also:
Serialized Form

Field Summary
 double maxBandwidthHz
          The maximum bandwidth of the data source.
 double minBandwidthHz
          The minimum bandwidth of the data source.
 int numberChannels
          The number of channels in the audio data.
 double preampGainDb
          The preamplifier gain of the audio data.
 float samplingRateHz
          The sampling rate of the audio data.
(package private) static long serialVersionUID
          The constant serialVersionUID that is required by Serializable.
 java.lang.String sourceName
          The name of the acquisition source module.
 int sourceNumber
          The number assigned to the source module by the pamguard controller.
 double voltageRange
          The peak-to-peak voltage range of the audio data.
 
Constructor Summary
AcquisitionSettings()
          Instantiates a new acquisition settings.
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

serialVersionUID

static final long serialVersionUID
The constant serialVersionUID that is required by Serializable.

See Also:
Constant Field Values

minBandwidthHz

public double minBandwidthHz
The minimum bandwidth of the data source.


maxBandwidthHz

public double maxBandwidthHz
The maximum bandwidth of the data source.


samplingRateHz

public float samplingRateHz
The sampling rate of the audio data.


numberChannels

public int numberChannels
The number of channels in the audio data.


voltageRange

public double voltageRange
The peak-to-peak voltage range of the audio data.


preampGainDb

public double preampGainDb
The preamplifier gain of the audio data.


sourceName

public java.lang.String sourceName
The name of the acquisition source module.


sourceNumber

public int sourceNumber
The number assigned to the source module by the pamguard controller.

Constructor Detail

AcquisitionSettings

public AcquisitionSettings()
Instantiates a new acquisition settings.