Closedown
This commit is contained in:
@@ -79,20 +79,20 @@ public class Pilatus extends AreaDetector{
|
||||
return (Double) readCtrl("Phi", Double.class);
|
||||
}
|
||||
|
||||
public void setFileNumber(double value) throws IOException, InterruptedException{
|
||||
public void setFileNumber(int value) throws IOException, InterruptedException{
|
||||
writeCtrl("FileNumber", value);
|
||||
}
|
||||
|
||||
public double getFileNumber() throws IOException, InterruptedException{
|
||||
return (Double) readCtrl("FileNumber", Double.class);
|
||||
public int getFileNumber() throws IOException, InterruptedException{
|
||||
return (Integer) readCtrl("FileNumber", Integer.class);
|
||||
}
|
||||
|
||||
public void setFileName(double value) throws IOException, InterruptedException{
|
||||
public void setFileName(String value) throws IOException, InterruptedException{
|
||||
writeCtrl("FileName", value);
|
||||
}
|
||||
|
||||
public double getFileName() throws IOException, InterruptedException{
|
||||
return (Double) readCtrl("FileName", Double.class);
|
||||
public String getFileName() throws IOException, InterruptedException{
|
||||
return (String) readCtrl("FileName", String.class);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user