Exemple #1
0
// >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
void Application::addProcessor(const DataModel::WaveformStreamID &wfid,
			       WaveformProcessor *proc) {
	addProcessor(wfid.networkCode(),
		     wfid.stationCode(),
		     wfid.locationCode(),
		     wfid.channelCode(),
		     proc);
}
Exemple #2
0
// >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
void Application::registerProcessor(const DataModel::WaveformStreamID &wfid,
			            TimeWindowProcessor *proc) {
	registerProcessor(wfid.networkCode(),
		          wfid.stationCode(),
		          wfid.locationCode(),
		          wfid.channelCode(),
		          proc);
}
Exemple #3
0
// >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
void Application::removeProcessors(const DataModel::WaveformStreamID &wfid) {
	removeProcessors(wfid.networkCode(),
		         wfid.stationCode(),
		         wfid.locationCode(),
		         wfid.channelCode());
}