Install SeisComP and scanloc ARM64 nightly packages

This commit is contained in:
Enrico Ellguth
2025-10-29 12:34:04 +00:00
parent 2ff097f9d1
commit 165b829fb7
606 changed files with 24438 additions and 16358 deletions

View File

@ -37,8 +37,8 @@ class SC_SYSTEM_CORE_API BinaryRecord : public GenericRecord {
BinaryRecord();
public:
void read(std::istream &in);
void write(std::ostream &out);
void read(std::istream &in) override;
void write(std::ostream &out) override;
};
}

View File

@ -146,7 +146,7 @@ class SC_SYSTEM_CORE_API MSeedRecord: public Record {
void saveSpace() const override;
//! Returns a deep copy of the calling object.
Record* copy() const;
Record* copy() const override;
//! Sets flag specifying the encoding type of the write routine.
//! true(default) -> use the encoding of the original record; false -> use the type of the data
@ -156,10 +156,10 @@ class SC_SYSTEM_CORE_API MSeedRecord: public Record {
void setOutputRecordLength(int reclen);
//! Extract the packed MSeedRecord attributes from the given stream
void read(std::istream &in);
void read(std::istream &in) override;
//! Encode the record into the given stream
void write(std::ostream& out);
void write(std::ostream& out) override;
private:
void _setDataAttributes(int reclen, char *data) const;

View File

@ -58,9 +58,9 @@ class SC_SYSTEM_CORE_API SACRecord : public Record {
Array* data();
//! Returns the data samples if the data is available; otherwise 0
const Array* data() const;
const Array* data() const override;
const Array* raw() const;
const Array* raw() const override;
//! Sets the data sample array. The ownership goes over to the record.
void setData(Array* data);
@ -69,12 +69,12 @@ class SC_SYSTEM_CORE_API SACRecord : public Record {
void setData(int size, const void *data, Array::DataType datatype);
//! Returns a deep copy of the calling object.
SACRecord *copy() const;
SACRecord *copy() const override;
void saveSpace() const;
void saveSpace() const override;
void read(std::istream &in);
void write(std::ostream &out);
void read(std::istream &in) override;
void write(std::ostream &out) override;
private:

View File

@ -70,9 +70,9 @@ class SC_SYSTEM_CORE_API SHRecord : public Record {
Array* data();
//! Returns the data samples if the data is available; otherwise 0
const Array* data() const;
const Array* data() const override;
const Array* raw() const;
const Array* raw() const override;
//! Sets the data sample array. The ownership goes over to the record.
void setData(Array* data);
@ -81,13 +81,13 @@ class SC_SYSTEM_CORE_API SHRecord : public Record {
void setData(int size, const void *data, Array::DataType datatype);
//! Frees the memory allocated for the data samples.
void saveSpace() const {}
void saveSpace() const override {}
//! Returns a deep copy of the calling object.
SHRecord* copy() const;
SHRecord* copy() const override;
void read(std::istream &in);
void write(std::ostream &out);
void read(std::istream &in) override;
void write(std::ostream &out) override;
private:
@ -102,7 +102,7 @@ class SC_SYSTEM_CORE_API SHOutput {
SHOutput(const Record *rec);
~SHOutput();
bool put(const SHRecord *rec);
private: