package cn.com.magnity.magnitycx.sdk; /* loaded from: classes.dex */ public class BasePara2 implements Cloneable { public float ATErrorSlope; public int ATZeroErrorPoint; public int baseLineAcc; public int denoiseLevel; public int enlargeRange; public int ffcTriggerFrame; public int ffcTriggerTemperature; public short fpaTempFix; public int laserPos; public int reserved1; public short reserved2; public int reserved5; public int reserved6; public int shutterCloseSpeed; public int shutterOpenSpeed; public BasePara2() { reset(); } public void reset() { this.baseLineAcc = 0; this.denoiseLevel = 0; this.reserved1 = 0; this.reserved2 = (short) 0; this.fpaTempFix = (short) 0; this.shutterCloseSpeed = 0; this.shutterOpenSpeed = 0; this.ffcTriggerFrame = 0; this.ffcTriggerTemperature = 0; this.enlargeRange = 0; this.laserPos = 0; this.ATZeroErrorPoint = 0; this.ATErrorSlope = 0.0f; this.reserved5 = 0; this.reserved6 = 0; } public Object clone() throws CloneNotSupportedException { return super.clone(); } }