Class ExperimentalData
- java.lang.Object
-
- pulse.util.UpwardsNavigable
-
- pulse.util.Group
-
- pulse.util.Accessible
-
- pulse.util.PropertyHolder
-
- pulse.AbstractData
-
- pulse.input.ExperimentalData
-
- All Implemented Interfaces:
Serializable
,DiscreteInput
,Descriptive
public class ExperimentalData extends AbstractData implements DiscreteInput
An
ExperimentalData
object is essentially aAbstractData
with adjustable range and linkedMetadata
. It is used to store experimental data points loaded with one of the availableCurveReader
s. Any manipulation (e.g. truncation) of the data triggers an event associated with thisExperimentalData
.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static double
CUTOFF_FACTOR
This is the cutoff factor which is used as a criterion for data truncation.-
Fields inherited from class pulse.AbstractData
signal, time
-
-
Constructor Summary
Constructors Constructor Description ExperimentalData()
Constructs anExperimentalData
object using the superclass constructor and creating a new list of data listeners.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addDataListener(DataListener listener)
void
addPoint(double time, double signal)
Addstime
andtemperature
to the respectiveList
s.void
clearDataListener()
boolean
equals(Object o)
void
fireDataChanged(DataEvent dataEvent)
double
getEffectiveEndTime()
Gets the time sequence element corresponding to the upper bound of the index rangedouble
getEffectiveStartTime()
Gets the time sequence element corresponding to the lower bound of the index rangeHalfTimeCalculator
getHalfTimeCalculator()
IndexRange
getIndexRange()
Gets the index range of this data.Metadata
getMetadata()
Retrieves theMetadata
object for thisExperimentalData
.Range
getRange()
Gets the dimensional timeRange
of this data.List<Double>
getX()
List<Double>
getY()
void
initListeners()
boolean
isAcquisitionTimeSensible()
Checks if the acquisition time used to collect thisExperimentalData
is sensible.void
preprocess()
void
resetRanges()
Calls reset for both theIndexRange
andRange
objects using the current time sequence.void
setMetadata(Metadata metadata)
Sets a newMetadata
object for thisExperimentalData
.void
setRange(Range range)
Sets the range, assigningthis
to its parent, and forcing changes to theindexRange
.double
timeLimit()
Retrieves the time limit.String
toString()
void
truncate()
Truncates therange
andindexRange
of thisExperimentalData
above a certain threshold, NOT removing any data elements.-
Methods inherited from class pulse.AbstractData
actualNumPoints, apparentMaximum, clear, getName, getNumPoints, getSignalData, getTimeSequence, ignoreSiblings, incrementCount, isFull, listedKeywords, remove, set, setName, setNumPoints, setSignalAt, setTimeAt, signalAt, timeAt
-
Methods inherited from class pulse.util.PropertyHolder
addListener, areDetailsHidden, data, describe, firePropertyChanged, getDescriptor, getListeners, getPrefix, isListedNumericType, isListedParameter, listedTypes, numericData, parameterListChanged, removeListeners, setPrefix, updateProperties, updateProperty
-
Methods inherited from class pulse.util.Accessible
accessibleChildren, genericProperties, genericProperty, numericProperties, numericProperty, property, update, update
-
Methods inherited from class pulse.util.UpwardsNavigable
addHierarchyListener, getHierarchyListeners, getParent, identify, removeHierarchyListener, removeHierarchyListeners, setParent, specificAncestor, tellParent
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface pulse.DiscreteInput
bounds
-
-
-
-
Field Detail
-
CUTOFF_FACTOR
public static final double CUTOFF_FACTOR
This is the cutoff factor which is used as a criterion for data truncation. Described in Lunev, A., & Heymer, R. (2020). Review of Scientific Instruments, 91(6), 064902.- See Also:
- Constant Field Values
-
-
Method Detail
-
initListeners
public void initListeners()
- Overrides:
initListeners
in classPropertyHolder
-
addDataListener
public final void addDataListener(DataListener listener)
-
clearDataListener
public final void clearDataListener()
-
fireDataChanged
public final void fireDataChanged(DataEvent dataEvent)
-
resetRanges
public final void resetRanges()
Calls reset for both theIndexRange
andRange
objects using the current time sequence.
-
toString
public String toString()
- Overrides:
toString
in classAbstractData
-
addPoint
public void addPoint(double time, double signal)
Addstime
andtemperature
to the respectiveList
s. Increments the counter of points. Note that no baseline correction is performed.- Overrides:
addPoint
in classAbstractData
- Parameters:
time
- the next time valuesignal
- the next signal value
-
getMetadata
public Metadata getMetadata()
Retrieves theMetadata
object for thisExperimentalData
.- Returns:
- the linked
Metadata
-
equals
public boolean equals(Object o)
- Overrides:
equals
in classAbstractData
- Returns:
true
only ifo
is anAbstractData
containing all the elements of the time and signal lists ofthis
object.
-
isAcquisitionTimeSensible
public boolean isAcquisitionTimeSensible()
Checks if the acquisition time used to collect thisExperimentalData
is sensible.The acquisition time is essentially the last element in the
time List
. By default, it is deemed sensible if that last element is less than 7.2*halfRiseTime
.- Returns:
true
if the acquisition time is below the truncation threshold,false
otherwise.
-
truncate
public void truncate()
Truncates therange
andindexRange
of thisExperimentalData
above a certain threshold, NOT removing any data elements.The threshold is calculated based on the
halfRiseTime
value and is set by default to 7.2*halfRiseTime
. ADataEvent
will be created and passed to thedataListeners
(if any) with theDataEventType.TRUNCATED
as argument.- See Also:
halfRiseTime
,DataEvent
,fireDataChanged(pulse.input.listeners.DataEvent)
-
setMetadata
public void setMetadata(Metadata metadata)
Sets a newMetadata
object for thisExperimentalData
.The
pulseWidth
property recorded inMetadata
will be used to set the time range for the reverse problem solution. Whenever this property is changed in themetadata
, a listener will ensure an updated range is used.- Parameters:
metadata
- the new Metadata object- See Also:
PropertyHolderListener
-
getEffectiveStartTime
public double getEffectiveStartTime()
Gets the time sequence element corresponding to the lower bound of the index range- Returns:
- the time (in seconds) associated with
indexRange.getLowerBound()
-
getEffectiveEndTime
public double getEffectiveEndTime()
Gets the time sequence element corresponding to the upper bound of the index range- Returns:
- the time (in seconds) associated with
indexRange.getUpperBound()
-
getRange
public Range getRange()
Gets the dimensional timeRange
of this data.- Returns:
- the range
-
getIndexRange
public IndexRange getIndexRange()
Gets the index range of this data.- Specified by:
getIndexRange
in interfaceDiscreteInput
- Returns:
- the index range
-
setRange
public void setRange(Range range)
Sets the range, assigningthis
to its parent, and forcing changes to theindexRange
.- Parameters:
range
- the range
-
timeLimit
public double timeLimit()
Retrieves the time limit.- Overrides:
timeLimit
in classAbstractData
- Returns:
- a double, equal to the last element of the
time List
. - See Also:
DifferenceScheme
-
getHalfTimeCalculator
public HalfTimeCalculator getHalfTimeCalculator()
-
preprocess
public void preprocess()
-
getX
public List<Double> getX()
- Specified by:
getX
in interfaceDiscreteInput
-
getY
public List<Double> getY()
- Specified by:
getY
in interfaceDiscreteInput
-
-