View Javadoc

1   /*
2    * BaseTrackMC.java
3    *
4    * Created on February 9, 2007, 10:50 AM
5    *
6    * To change this template, choose Tools | Options and locate the template under
7    * the Source Creation and Management node. Right-click the template and choose
8    * Open. You can then make changes to the template in the Source Editor.
9    */
10  
11  package org.lcsim.event.base;
12  import org.lcsim.event.MCParticle;
13  /**
14   *
15   * @author cassell
16   */
17  public class BaseTrackMC extends BaseTrack
18  {
19      MCParticle _p;
20      /** Creates a new instance of BaseTrackMC */
21      public BaseTrackMC(MCParticle p)
22      {
23          super();
24          _p = p;
25      }
26      public MCParticle getMCParticle()
27      {
28          return _p;
29      }
30  }