org.micromanager.acqj.util.ChannelSetting Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of AcqEngJ Show documentation
Show all versions of AcqEngJ Show documentation
Java-based Acquisition engine for Micro-Manager
/*
* 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.
*/
package org.micromanager.acqj.util;
/**
* Convenience class that encapsulates a single channel setting
*
* @author henrypinkard
*/
public class ChannelSetting {
public String group_, config_;
public double exposure_, offset_;
public ChannelSetting(String group, String config,
double exposure, double offset) {
group_ = group;
config_ = config;
exposure_ = exposure;
offset_ = offset;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy