View Javadoc

1   package org.lcsim.plugin.browser;
2   
3   import org.lcsim.event.RawCalorimeterHit;
4   
5   /**
6    *
7    * @author tonyj
8    */
9   public class RawCalorimeterHitTableModel extends GenericTableModel
10  {
11     private static final String[] columns = {"CellID","Amplitude","TimeStamp"};
12     private static Class klass = RawCalorimeterHit.class;
13  
14     RawCalorimeterHitTableModel()
15     {
16        super(klass,columns);
17     }
18     
19  }