Main Page | Packages | Class Hierarchy | Alphabetical List | Class List | File List | Class Members | Related Pages

ISAxis.java

00001 /*
00002  * ISAxis.java
00003  *
00004  * Created on 27 November 2002, 13:51
00005  */
00006 
00007 package oh;
00008 
00013 public class ISAxis {
00017     public int                 is_type;
00018 
00022     public String              is_label;
00023 
00027     public double[]            is_axis;
00028     
00029     public ISAxis() {
00030         is_type = ISHistogram.IS_FIXED;
00031     }
00032 
00033     public void publishGuts( is.Ostream out ) {
00034         out.put( is_type, true ).put( is_label );
00035         out.put( is_axis );
00036     }
00037 
00038     public void refreshGuts( is.Istream in ){
00039         is_type = in.getInt( );
00040         is_label = in.getString( );
00041         is_axis = in.getDoubleArray( );
00042     }
00043 
00044 }
00045 

Generated on Thu Jul 15 09:55:43 2004 for SCT DAQ/DCS Software - Java by doxygen 1.3.5