]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TIsajet/AliGenIsajet.h
put the QA making in the event loop
[u/mrichter/AliRoot.git] / TIsajet / AliGenIsajet.h
CommitLineData
8766db25 1#ifndef ALIGENISAJET_H
2#define ALIGENISAJET_H
3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
6/* $Id$ */
7
8// Implementation of the interface for TIsajet
9// Author:
10
11
12#include "TString.h"
13
14#include "AliGenerator.h"
15#include "AliGenMC.h"
16#include <AliRndm.h>
17#include <TString.h>
18#include <TArrayI.h>
19
20class TIsajet;
21class TArrayI;
22class TParticle;
23class TClonesArray;
24
25
26class AliGenIsajet : public AliGenMC {
27
28 public:
29 AliGenIsajet();
30 AliGenIsajet(Int_t npart);
8766db25 31 virtual ~AliGenIsajet();
32
33 //
34
35
36 virtual void Init();
37 virtual void Generate();
8766db25 38
39 protected:
40 TIsajet * fIsajet;
41 Float_t fKineBias; // Bias from kinematic selection
42 Int_t fTrials; // Number of trials
43 private:
eec15386 44
45 AliGenIsajet(const AliGenIsajet &Isajet); // Not Implemented
46 AliGenIsajet & operator=(const AliGenIsajet & rhs); // Not Implemented
8766db25 47
48 ClassDef(AliGenIsajet,1) // Interface class for AliIsajet
49
50};
51#endif