ROOT logo
#ifndef ALILEGOGENERATORXYZ_H
#define ALILEGOGENERATORXYZ_H
/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
 * See cxx source for full Copyright notice                               */

/* $Id$ */

///////////////////////////////////////////////////////////////////////////////
//                                                                           //
//                                                                           //
//    Utility class to compute and draw Radiation Length Map                 //
//                                                                           //
//                                                                           //
///////////////////////////////////////////////////////////////////////////////

#include "AliLegoGenerator.h"

class AliLegoGeneratorXYZ : public AliLegoGenerator
{

 public:
    AliLegoGeneratorXYZ();
    AliLegoGeneratorXYZ(char* axis);
    AliLegoGeneratorXYZ(Int_t nc1, Float_t c1min, Float_t c1max,
			Int_t nc2, Float_t c2min, Float_t c2max,
			Float_t rmin, Float_t rmax, Float_t zmax);
    virtual ~AliLegoGeneratorXYZ() {}
    virtual void    Generate();
 protected:
    Float_t fDir1[3];  // 1st unit vector spanning the scanning plane
    Float_t fDir2[3];  // 2nd unit vector spanning the scanning plane
    Float_t fDir3[3];  // Direction of flight for geantinos
    
    ClassDef(AliLegoGeneratorXYZ,1) //Lego GeneratorXYZ
};

#endif








 AliLegoGeneratorXYZ.h:1
 AliLegoGeneratorXYZ.h:2
 AliLegoGeneratorXYZ.h:3
 AliLegoGeneratorXYZ.h:4
 AliLegoGeneratorXYZ.h:5
 AliLegoGeneratorXYZ.h:6
 AliLegoGeneratorXYZ.h:7
 AliLegoGeneratorXYZ.h:8
 AliLegoGeneratorXYZ.h:9
 AliLegoGeneratorXYZ.h:10
 AliLegoGeneratorXYZ.h:11
 AliLegoGeneratorXYZ.h:12
 AliLegoGeneratorXYZ.h:13
 AliLegoGeneratorXYZ.h:14
 AliLegoGeneratorXYZ.h:15
 AliLegoGeneratorXYZ.h:16
 AliLegoGeneratorXYZ.h:17
 AliLegoGeneratorXYZ.h:18
 AliLegoGeneratorXYZ.h:19
 AliLegoGeneratorXYZ.h:20
 AliLegoGeneratorXYZ.h:21
 AliLegoGeneratorXYZ.h:22
 AliLegoGeneratorXYZ.h:23
 AliLegoGeneratorXYZ.h:24
 AliLegoGeneratorXYZ.h:25
 AliLegoGeneratorXYZ.h:26
 AliLegoGeneratorXYZ.h:27
 AliLegoGeneratorXYZ.h:28
 AliLegoGeneratorXYZ.h:29
 AliLegoGeneratorXYZ.h:30
 AliLegoGeneratorXYZ.h:31
 AliLegoGeneratorXYZ.h:32
 AliLegoGeneratorXYZ.h:33
 AliLegoGeneratorXYZ.h:34
 AliLegoGeneratorXYZ.h:35
 AliLegoGeneratorXYZ.h:36
 AliLegoGeneratorXYZ.h:37
 AliLegoGeneratorXYZ.h:38
 AliLegoGeneratorXYZ.h:39
 AliLegoGeneratorXYZ.h:40
 AliLegoGeneratorXYZ.h:41
 AliLegoGeneratorXYZ.h:42
 AliLegoGeneratorXYZ.h:43
 AliLegoGeneratorXYZ.h:44
 AliLegoGeneratorXYZ.h:45