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: RhoZFishEye.java 2160 2005-08-02 19:16:54Z duns $
10 */
11
12 public class RhoZFishEye extends CompositeProjection {
13
14 public RhoZFishEye() {
15 super("Rho-Z-FishEye");
16 add(new CylindricalFishEyeProjection());
17 add(new RhoZProjection());
18 add(new FlatProjection());
19 }
20 }