// September 2015 // Levee Patroller / Dijk Patrouille // This source file is (c) by Deltares. This source file is open source but only available to select users. Do not redistribute without written permission of Stichting Deltares, Delft, The Netherlands. // This header has been automatically generated. //============================================================================= // Object that contains informations of signal seen // See sub classes for more information // ------------------------------------------------------------ // Created by Rui Guimaraes // © 2006, Geodelft // // Date Id Modification // 2006-10-25 The Formatted code // 2007-07-11 Wsl Created function Duplicate() //============================================================================= class SignalLiquefaction extends Signal editinlinenew; //============================================================================= // Date Id Modification // 2007-07-11 Wsl Created //============================================================================= function Signal Duplicate() { local SignalLiquefaction returner; // get new Signal with duplicate values from Signal common properties returner = SignalLiquefaction(GetSignalDuplicate()); // there are no properties specific to this Signal type return returner; } //============================================================================= // Date Id Modification // 2006-08-14 The Created //============================================================================= function bool IsEqual(Signal ASignal) { local bool LIsEqual; LIsEqual = Super.IsEqual(ASignal); // LIsEqual = LIsEqual && ( == ASignal.); return LIsEqual; } //============================================================================= // Date Id Modification // 2007-06-29 Zmr Created this header //============================================================================= function bool IsSignalEqual(int ThisSignalReportNr,Signal ASignal,int ThatSignalReportNr, float AScoreFractionThreshold, out int ACorrectCount, out int APossibleCount) { return super.IsSignalEqual(ThisSignalReportNr,ASignal,ThatSignalReportNr, AScoreFractionThreshold, ACorrectCount, APossibleCount); } //============================================================================= // Date Id Modification // 2006-10-25 The Created this header //============================================================================= defaultproperties { NL_DamageName="Verweking" EN_DamageName="Liquefaction" SignalType=SIG_Liquefaction }