ROOT logo
#ifndef ALIEVENTSHAPE_H
#define ALIEVENTSHAPE_H

/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
 * See cxx source for full Copyright notice                               */
 
//---------------------------------------------------------------------
// Event shape utility class
// Circularity, Thrust, ... 
// Authors: Antonio Ortiz Velasquez <Antonio.Ortiz.Velasquez@cern.ch>
//          
//---------------------------------------------------------------------

#include <TObject.h>


class AliMCEvent;
class TParticle;
class TArrayD;

class AliEventShape : public TObject
{
  public:
    static TArrayD * GetThrustParamMC(AliMCEvent* mcEvent, Int_t  NSTUDYMIN=3, Double_t ptcutoff=1, Double_t etacutoff=1, Bool_t chom=kFALSE);
    static Double_t GetCircularityMC(AliMCEvent* mcEvent, Int_t  NSTUDYMIN=3, Double_t ptcutoff=1, Double_t etacutoff=1, Bool_t chom=kFALSE);
  private:
    AliEventShape(const AliEventShape&);
    AliEventShape& operator=(const AliEventShape&);
    ClassDef(AliEventShape, 0)
};

#endif

 AliEventShape.h:1
 AliEventShape.h:2
 AliEventShape.h:3
 AliEventShape.h:4
 AliEventShape.h:5
 AliEventShape.h:6
 AliEventShape.h:7
 AliEventShape.h:8
 AliEventShape.h:9
 AliEventShape.h:10
 AliEventShape.h:11
 AliEventShape.h:12
 AliEventShape.h:13
 AliEventShape.h:14
 AliEventShape.h:15
 AliEventShape.h:16
 AliEventShape.h:17
 AliEventShape.h:18
 AliEventShape.h:19
 AliEventShape.h:20
 AliEventShape.h:21
 AliEventShape.h:22
 AliEventShape.h:23
 AliEventShape.h:24
 AliEventShape.h:25
 AliEventShape.h:26
 AliEventShape.h:27
 AliEventShape.h:28
 AliEventShape.h:29
 AliEventShape.h:30
 AliEventShape.h:31
 AliEventShape.h:32
 AliEventShape.h:33