View Javadoc

1   // Copyright 2004, FreeHEP.
2   package hep.wired.heprep.projection;
3   
4   import hep.wired.heprep.services.Projection;
5   
6   /***
7    *
8    * @author Mark Donszelmann
9    * @version $Id: RhoZ.java 2160 2005-08-02 19:16:54Z duns $
10   */
11  
12  public class RhoZ extends CompositeProjection {
13      
14      public RhoZ() {
15          super("Rho-Z");
16          add(new RhoZProjection());
17          add(new FlatProjection());
18      }
19  }