View Javadoc

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