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: YXClock.java 645 2005-02-27 02:23:41Z duns $
10 */
11
12 public class YXClock extends CompositeProjection {
13
14 public YXClock() {
15 super("YX-Clock");
16 add(new ClockProjection());
17 add(new ParallelProjection.XY());
18 }
19 }