]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TFluka/TFlukaScoringOption.h
Compute vertex cut for conformal tracks.
[u/mrichter/AliRoot.git] / TFluka / TFlukaScoringOption.h
1 #ifndef TFLUKASCORINGOPTION
2 #define TFLUKASCORINGOPTION
3
4 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
5  * See cxx source for full Copyright notice                               */
6
7 /* $Id$ */
8
9 ///////////////////////////////////////////////////////////////////////////////
10 //                                                                           //
11 //                                                                           //
12 // Class to store FLUKA specific scoring options
13 //                                                                           //
14 //
15 // Author: andreas.morsch@cern.ch 
16 //
17 //
18 ///////////////////////////////////////////////////////////////////////////////
19
20
21 #include <TNamed.h>
22
23
24 class TFlukaScoringOption : public TNamed
25 {
26 public:
27    // constructors
28     TFlukaScoringOption();
29     TFlukaScoringOption(const char* name, const char* sdum, Int_t npar,  Float_t what[12]);
30  protected:
31     Int_t         fNpar;        // Number of paramters
32     Float_t       fWhat[12];    // WHAT()
33     ClassDef(TFlukaScoringOption, 1)  // Fluka Scoring Option
34 };
35         
36 #endif
37