numass-framework/numass-viewer/src/main/java/inr/numass/viewer/NumassLoaderViewComponent.java

455 lines
17 KiB
Java
Raw Normal View History

2015-12-18 16:20:47 +03:00
/*
* Copyright 2015 Alexander Nozik.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package inr.numass.viewer;
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
2015-12-21 16:40:21 +03:00
import hep.dataforge.data.DataPoint;
2016-02-23 19:21:45 +03:00
import hep.dataforge.data.ListPointSet;
2015-12-21 16:40:21 +03:00
import hep.dataforge.data.MapDataPoint;
2016-02-23 19:21:45 +03:00
import hep.dataforge.data.XYAdapter;
2015-12-18 16:20:47 +03:00
import hep.dataforge.io.ColumnedDataWriter;
import hep.dataforge.meta.Meta;
import hep.dataforge.meta.MetaBuilder;
import hep.dataforge.plots.XYPlotFrame;
import hep.dataforge.plots.XYPlottable;
2015-12-21 16:40:21 +03:00
import hep.dataforge.plots.data.ChangeablePlottableData;
2015-12-18 16:20:47 +03:00
import hep.dataforge.plots.data.PlotDataUtils;
import hep.dataforge.plots.data.PlottableData;
import hep.dataforge.plots.jfreechart.JFreeChartFrame;
import hep.dataforge.storage.commons.JSONMetaWriter;
import inr.numass.data.NMPoint;
import inr.numass.data.NumassData;
import java.io.File;
import java.io.IOException;
import java.net.URL;
import java.util.ArrayList;
import java.util.List;
import java.util.ResourceBundle;
2015-12-27 18:04:05 +03:00
import java.util.concurrent.ExecutionException;
import java.util.function.Predicate;
2015-12-21 16:40:21 +03:00
import java.util.stream.Collectors;
2015-12-27 18:04:05 +03:00
import javafx.application.Platform;
2015-12-18 16:20:47 +03:00
import javafx.beans.property.BooleanProperty;
2015-12-21 16:40:21 +03:00
import javafx.beans.value.ChangeListener;
2015-12-18 16:20:47 +03:00
import javafx.beans.value.ObservableValue;
import javafx.collections.FXCollections;
2015-12-27 18:04:05 +03:00
import javafx.concurrent.Task;
2015-12-18 16:20:47 +03:00
import javafx.event.ActionEvent;
import javafx.fxml.FXML;
import javafx.fxml.FXMLLoader;
import javafx.fxml.Initializable;
import javafx.scene.control.Button;
import javafx.scene.control.CheckBox;
import javafx.scene.control.ChoiceBox;
import javafx.scene.control.SelectionMode;
import javafx.scene.control.Tab;
import javafx.scene.control.TextArea;
2015-12-21 16:40:21 +03:00
import javafx.scene.control.TextField;
2015-12-18 16:20:47 +03:00
import javafx.scene.layout.AnchorPane;
import javafx.scene.layout.VBox;
import javafx.stage.FileChooser;
2015-12-21 16:40:21 +03:00
import javafx.util.converter.NumberStringConverter;
2015-12-18 16:20:47 +03:00
import org.controlsfx.control.CheckListView;
2015-12-21 16:40:21 +03:00
import org.controlsfx.control.RangeSlider;
2015-12-27 18:04:05 +03:00
import org.controlsfx.validation.ValidationSupport;
import org.controlsfx.validation.Validator;
2015-12-18 16:20:47 +03:00
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
2016-02-23 19:21:45 +03:00
import hep.dataforge.data.PointSet;
2015-12-18 16:20:47 +03:00
/**
* FXML Controller class
*
* @author darksnake
*/
public class NumassLoaderViewComponent extends AnchorPane implements Initializable {
2015-12-27 18:04:05 +03:00
private FXTaskManager callback;
2015-12-21 16:40:21 +03:00
2015-12-18 16:20:47 +03:00
Logger logger = LoggerFactory.getLogger(NumassLoaderViewComponent.class);
private NumassData data;
private XYPlotFrame detectorPlotFrame;
2015-12-21 16:40:21 +03:00
private XYPlotFrame spectrumPlotFrame;
private ChangeablePlottableData spectrumData;
private List<NMPoint> points;
2015-12-18 16:20:47 +03:00
@FXML
private AnchorPane detectorPlotPane;
@FXML
private CheckListView<String> detectorPointListView;
@FXML
private Tab detectorTab;
@FXML
private Tab hvTab;
@FXML
private Tab spectrumTab;
@FXML
private TextArea infoTextBox;
@FXML
private VBox detectorOptionsPane;
@FXML
private AnchorPane spectrumPlotPane;
@FXML
private VBox spectrumOptionsPane;
@FXML
private ChoiceBox<Integer> detectorBinningSelector;
@FXML
private CheckBox detectorNormalizeSwitch;
@FXML
private Button detectorDataExportButton;
2015-12-21 16:40:21 +03:00
@FXML
private TextField lowChannelField;
@FXML
private TextField upChannelField;
@FXML
private RangeSlider channelSlider;
2015-12-27 18:04:05 +03:00
@FXML
private Button spectrumExportButton;
@FXML
private TextField dTimeField;
public NumassLoaderViewComponent() {
FXMLLoader loader = new FXMLLoader(getClass().getResource("/fxml/NumassLoaderView.fxml"));
loader.setRoot(this);
loader.setController(this);
try {
loader.load();
} catch (IOException ex) {
throw new RuntimeException(ex);
}
}
2015-12-21 16:40:21 +03:00
2015-12-18 16:20:47 +03:00
/**
* Initializes the controller class.
2015-12-21 16:40:21 +03:00
*
2015-12-18 16:20:47 +03:00
* @param url
* @param rb
*/
@Override
public void initialize(URL url, ResourceBundle rb) {
2015-12-27 18:04:05 +03:00
detectorBinningSelector.setItems(FXCollections.observableArrayList(1, 2, 5, 10, 20, 50));
detectorBinningSelector.getSelectionModel().select(4);
2015-12-18 16:20:47 +03:00
detectorNormalizeSwitch.setSelected(true);
detectorPointListView.getSelectionModel().setSelectionMode(SelectionMode.MULTIPLE);
detectorDataExportButton.setOnAction(this::onExportButtonClick);
2015-12-21 16:40:21 +03:00
lowChannelField.textProperty().bindBidirectional(channelSlider.lowValueProperty(), new NumberStringConverter());
upChannelField.textProperty().bindBidirectional(channelSlider.highValueProperty(), new NumberStringConverter());
2015-12-24 12:20:42 +03:00
2015-12-27 18:04:05 +03:00
channelSlider.setHighValue(1900d);
channelSlider.setLowValue(300d);
2015-12-24 12:20:42 +03:00
2015-12-21 16:40:21 +03:00
ChangeListener<? super Number> rangeChangeListener = (ObservableValue<? extends Number> observable, Number oldValue, Number newValue) -> {
2015-12-27 18:04:05 +03:00
updateSpectrumPane(points);
2015-12-21 16:40:21 +03:00
};
2015-12-24 12:20:42 +03:00
2015-12-27 18:04:05 +03:00
dTimeField.textProperty().addListener((ObservableValue<? extends String> observable, String oldValue, String newValue) -> {
updateSpectrumPane(points);
});
2015-12-21 16:40:21 +03:00
channelSlider.lowValueProperty().addListener(rangeChangeListener);
channelSlider.highValueProperty().addListener(rangeChangeListener);
2015-12-27 18:04:05 +03:00
ValidationSupport validationSupport = new ValidationSupport();
Predicate<String> isNumber = (String t) -> {
try {
Double.parseDouble(t);
return true;
} catch (NumberFormatException | NullPointerException ex) {
return false;
}
};
validationSupport.registerValidator(dTimeField, Validator.createPredicateValidator(isNumber, "Must be number"));
2015-12-18 16:20:47 +03:00
}
public NumassData getData() {
return data;
}
2015-12-27 18:04:05 +03:00
public void setCallback(FXTaskManager callback) {
this.callback = callback;
}
public void loadData(NumassData data) {
2015-12-18 16:20:47 +03:00
this.data = data;
if (data != null) {
2015-12-27 18:04:05 +03:00
LoadPointsTask task = new LoadPointsTask(data);
if (callback != null) {
callback.postTask(task);
}
Viewer.runTask(task);
try {
this.points = task.get();
} catch (InterruptedException |ExecutionException ex) {
logger.error("Can't load spectrum data points", ex);
}
2015-12-18 16:20:47 +03:00
} else {
logger.error("The data model is null");
}
2015-12-27 18:04:05 +03:00
detectorTab.getTabPane().getSelectionModel().select(detectorTab);
}
private class LoadPointsTask extends Task<List<NMPoint>> {
private final NumassData loader;
public LoadPointsTask(NumassData loader) {
this.loader = loader;
}
@Override
protected List<NMPoint> call() throws Exception {
updateTitle("Load numass data (" + loader.getName() + ")");
List<NMPoint> points = loader.getNMPoints();
Platform.runLater(() -> {
//setup detector data
setupDetectorPane(points);
//setup spectrum plot
updateSpectrumPane(points);
setupInfo(data);
});
return points;
}
2015-12-18 16:20:47 +03:00
}
/**
* setup detector pane
*
* @param points
*/
private void setupDetectorPane(List<NMPoint> points) {
boolean normalize = detectorNormalizeSwitch.isSelected();
int binning = detectorBinningSelector.getValue();
updateDetectorPane(fillDetectorData(points, binning, normalize));
detectorBinningSelector.getSelectionModel().selectedItemProperty()
.addListener((ObservableValue<? extends Integer> observable, Integer oldValue, Integer newValue) -> {
boolean norm = detectorNormalizeSwitch.isSelected();
2015-12-27 18:04:05 +03:00
updateDetectorPane(fillDetectorData(NumassLoaderViewComponent.this.points, newValue, norm));
2015-12-18 16:20:47 +03:00
});
detectorNormalizeSwitch.selectedProperty().addListener((ObservableValue<? extends Boolean> observable, Boolean oldValue, Boolean newValue) -> {
int bin = detectorBinningSelector.getValue();
2015-12-27 18:04:05 +03:00
updateDetectorPane(fillDetectorData(NumassLoaderViewComponent.this.points, bin, newValue));
2015-12-18 16:20:47 +03:00
});
detectorDataExportButton.setDisable(false);
}
private void setupInfo(NumassData loader) {
Meta info = loader.getInfo();
infoTextBox.setText(new JSONMetaWriter().writeString(info, null).
2015-12-27 18:04:05 +03:00
replace("\\r", "\r\t").replace("\\n", "\n\t"));
2015-12-18 16:20:47 +03:00
}
2015-12-27 18:04:05 +03:00
private void updateSpectrumPane(List<NMPoint> points) {
2015-12-21 16:40:21 +03:00
if (spectrumPlotFrame == null) {
2015-12-24 12:20:42 +03:00
Meta plotMeta = new MetaBuilder("plot")
.setValue("xAxis.axisTitle", "U")
.setValue("xAxis.axisUnits", "V")
.setValue("yAxis.axisTitle", "count rate")
.setValue("yAxis.axisUnits", "Hz")
.setValue("legend.show", false);
2015-12-31 16:09:05 +03:00
spectrumPlotFrame = new JFreeChartFrame("spectrum", plotMeta).display(spectrumPlotPane);
2015-12-21 16:40:21 +03:00
}
2015-12-18 16:20:47 +03:00
2015-12-21 16:40:21 +03:00
if (spectrumData == null) {
2016-02-15 17:00:27 +03:00
spectrumData = new ChangeablePlottableData("spectrum");
2015-12-21 16:40:21 +03:00
spectrumPlotFrame.add(spectrumData);
}
2015-12-18 16:20:47 +03:00
2015-12-21 16:40:21 +03:00
int lowChannel = (int) channelSlider.getLowValue();
int highChannel = (int) channelSlider.getHighValue();
if (points == null || points.isEmpty()) {
spectrumData.clear();
} else {
spectrumData.fillData(points.stream()
2015-12-27 18:04:05 +03:00
.<DataPoint>map((NMPoint point) -> getSpectrumPoint(point, lowChannel, highChannel, getDTime()))
2015-12-21 16:40:21 +03:00
.collect(Collectors.toList()));
}
}
2015-12-18 16:20:47 +03:00
2015-12-27 18:04:05 +03:00
private double getDTime() {
try {
return Double.parseDouble(dTimeField.getText()) * 1e-6;
} catch (NumberFormatException ex) {
return 0;
}
}
private DataPoint getSpectrumPoint(NMPoint point, int lowChannel, int upChannel, double dTime) {
2015-12-21 16:40:21 +03:00
double u = point.getUread();
2015-12-27 18:04:05 +03:00
return new MapDataPoint(new String[]{"x", "y", "yErr"}, u,
point.getCountRate(lowChannel, upChannel, dTime),
point.getCountRateErr(lowChannel, upChannel, dTime));
2015-12-18 16:20:47 +03:00
}
/**
* update detector pane with new data
*/
private void updateDetectorPane(List<XYPlottable> detectorData) {
2015-12-27 18:04:05 +03:00
Platform.runLater(() -> {
if (detectorData == null) {
throw new IllegalArgumentException("Detector data not defined");
}
2015-12-18 16:20:47 +03:00
2015-12-27 18:04:05 +03:00
detectorPointListView.getItems().clear();//removing all checkboxes
detectorPlotPane.getChildren().clear();//removing plot
Meta frameMeta = new MetaBuilder("frame")
.setValue("frameTitle", "Detector response plot")
.setNode(new MetaBuilder("xAxis")
.setValue("axisTitle", "ADC")
.setValue("axisUnits", "channels")
.build())
.setNode(new MetaBuilder("yAxis")
.setValue("axisTitle", "count rate")
.setValue("axisUnits", "Hz")
.build())
.build();
2015-12-31 16:09:05 +03:00
detectorPlotFrame = new JFreeChartFrame("detectorSignal", frameMeta).display(detectorPlotPane);
2015-12-27 18:04:05 +03:00
for (XYPlottable pl : detectorData) {
detectorPlotFrame.add(pl);
detectorPointListView.getItems().add(pl.getName());
}
2015-12-18 16:20:47 +03:00
2015-12-27 18:04:05 +03:00
for (String plotName : detectorPointListView.getItems()) {
BooleanProperty checked = detectorPointListView.getItemBooleanProperty(plotName);
checked.set(true);
2015-12-18 16:20:47 +03:00
2015-12-27 18:04:05 +03:00
checked.addListener((ObservableValue<? extends Boolean> observable, Boolean oldValue, Boolean newValue) -> {
detectorPlotFrame.get(plotName).getConfig().setValue("visible", newValue);
});
}
});
2015-12-18 16:20:47 +03:00
}
private List<XYPlottable> fillDetectorData(List<NMPoint> points, int binning, boolean normalize) {
List<XYPlottable> plottables = new ArrayList<>();
Meta plottableConfig = new MetaBuilder("plot")
.setValue("connectionType", "step")
.setValue("thickness", 2)
.setValue("showLine", true)
.setValue("showSymbol", false)
2016-01-14 16:16:33 +03:00
.setValue("showErrors", false)
2015-12-18 16:20:47 +03:00
.build();
for (NMPoint point : points) {
String seriesName = String.format("%d: %.2f (%.2f)", points.indexOf(point), point.getUset(), point.getUread());
2016-02-23 19:21:45 +03:00
PlottableData datum = PlottableData.plot(seriesName,new XYAdapter("chanel", "count"), point.getData(binning, normalize));
2016-01-07 18:33:15 +03:00
datum.configure(plottableConfig);
2015-12-18 16:20:47 +03:00
plottables.add(datum);
}
return plottables;
}
@FXML
private void checkAllAction(ActionEvent event) {
detectorPointListView.getCheckModel().checkAll();
}
@FXML
private void uncheckAllAction(ActionEvent event) {
detectorPointListView.getCheckModel().clearChecks();
}
@FXML
private void checkSelectedAction(ActionEvent event) {
for (Integer i : detectorPointListView.getSelectionModel().getSelectedIndices()) {
detectorPointListView.getCheckModel().check(i);
}
}
@FXML
private void uncheckSelectedAction(ActionEvent event) {
for (Integer i : detectorPointListView.getSelectionModel().getSelectedIndices()) {
detectorPointListView.getCheckModel().clearCheck(i);
}
}
2015-12-27 18:04:05 +03:00
@FXML
private void onSpectrumExportClick(ActionEvent event) {
if (points != null && !points.isEmpty()) {
FileChooser fileChooser = new FileChooser();
fileChooser.setTitle("Choose text export destination");
fileChooser.setInitialFileName(data.getName() + "_spectrum.out");
File destination = fileChooser.showSaveDialog(spectrumPlotPane.getScene().getWindow());
if (destination != null) {
String[] names = new String[]{"Uset", "Uread", "Length", "Total", "Window", "CR", "CRerr", "Timestamp"};
int loChannel = (int) channelSlider.getLowValue();
int upChannel = (int) channelSlider.getHighValue();
double dTime = getDTime();
2016-02-23 19:21:45 +03:00
ListPointSet spectrumDataSet = new ListPointSet(names);
2015-12-27 18:04:05 +03:00
for (NMPoint point : points) {
spectrumDataSet.add(new MapDataPoint(names, new Object[]{
point.getUset(),
point.getUread(),
point.getLength(),
point.getEventsCount(),
point.getCountInWindow(loChannel, upChannel),
point.getCountRate(loChannel, upChannel, dTime),
point.getCountRateErr(loChannel, upChannel, dTime),
point.getStartTime()
}
));
}
try {
String comment = String.format("Numass data viewer spectrum data export for %s%n"
+ "Window: (%d, %d)%n"
+ "Dead time per event: %g%n",
data.getName(), loChannel, upChannel, dTime);
ColumnedDataWriter
.writeDataSet(destination, spectrumDataSet, comment, false);
} catch (IOException ex) {
LoggerFactory.getLogger(getClass()).error("Destination file not found", ex);
}
}
}
}
2015-12-18 16:20:47 +03:00
private void onExportButtonClick(ActionEvent event) {
FileChooser fileChooser = new FileChooser();
fileChooser.setTitle("Choose text export destination");
fileChooser.setInitialFileName(data.getName() + "_detector.out");
File destination = fileChooser.showSaveDialog(detectorPlotPane.getScene().getWindow());
if (destination != null) {
2016-02-23 19:21:45 +03:00
PointSet detectorData = PlotDataUtils.collectXYDataFromPlot(detectorPlotFrame, true);
2015-12-18 16:20:47 +03:00
try {
ColumnedDataWriter
.writeDataSet(destination, detectorData, "Numass data viewer detector data export for " + data.getName(),
false);
} catch (IOException ex) {
LoggerFactory.getLogger(getClass()).error("Destination file not found", ex);
}
}
}
}