All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.micromanager.acqj.util.ChannelSetting Maven / Gradle / Ivy

There is a newer version: 0.38.1
Show newest version
/*
 * 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