A ScienceSegment is a period of time where the experimenters determine
that the inteferometer is in a state where the data is suitable for
scientific analysis. A science segment can have a list of AnalysisChunks
asscociated with it that break the segment up into (possibly overlapping)
smaller time intervals for analysis.
|
__cmp__(self,
other)
ScienceSegments are compared by the GPS start time of the segment. |
source code
|
|
|
__getitem__(self,
i)
Allows iteration over and direct access to the AnalysisChunks
contained in this ScienceSegment. |
source code
|
|
|
|
|
__len__(self)
Returns the number of AnalysisChunks contained in this
ScienceSegment. |
source code
|
|
|
|
|
add_chunk(self,
start,
end,
trig_start=0,
trig_end=0)
Add an AnalysisChunk to the list associated with this ScienceSegment. |
source code
|
|
|
dur(self)
Returns the length (duration) in seconds of this ScienceSegment. |
source code
|
|
|
end(self)
Returns the GPS end time of this ScienceSegment. |
source code
|
|
|
get_df_node(self)
Returns the DataFind node for this ScienceSegment. |
source code
|
|
|
id(self)
Returns the ID of this ScienceSegment. |
source code
|
|
|
make_chunks(self,
length=0,
overlap=0,
play=0,
sl=0,
excl_play=0,
pad_data=0)
Divides the science segment into chunks of length seconds overlapped by
overlap seconds. |
source code
|
|
|
|
|
set_end(self,
t)
Override the GPS end time (and set the duration) of this
ScienceSegment. |
source code
|
|
|
set_start(self,
t)
Override the GPS start time (and set the duration) of this
ScienceSegment. |
source code
|
|
|
set_unused(self,
unused)
Set the length of data in the science segment not used to make
chunks. |
source code
|
|
|
start(self)
Returns the GPS start time of this ScienceSegment. |
source code
|
|
|
unused(self)
Returns the length of data in the science segment not used to make
chunks. |
source code
|
|