]> git.uio.no Git - u/mrichter/AliRoot.git/blame - STEER/AliMergeCombi.h
Change fgkRpadW to 1.0 cm for new pad plane
[u/mrichter/AliRoot.git] / STEER / AliMergeCombi.h
CommitLineData
05118fd5 1#ifndef ALIMERGECOMBI_H
2#define ALIMERGECOMBI_H
3/* Copyright(c) 1998-2000, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
6/* $Id$ */
7
8////////////////////////////////////////////////////////////////////////
9//
10// Class to make combination for merging
11//
12// Author: Jiri Chudoba (CERN), 2001
13//
14////////////////////////////////////////////////////////////////////////
15
16// --- ROOT system ---
17#include "TNamed.h"
18#include "TObjString.h"
19#include "TArrayI.h"
20#include "TClonesArray.h"
21
22// --- AliRoot header files ---
23
24class AliMergeCombi: public TNamed {
25
26public:
27 AliMergeCombi();
28 AliMergeCombi(Int_t dim, Int_t sperb);
29 virtual ~AliMergeCombi();
30 Bool_t Combination(Int_t evNumber[], Int_t delta[]);
31
32private:
05118fd5 33 Int_t fDim; //! dimension of arrays evNumber and delta
e49dbcf7 34 Int_t fSperb; //! signal per background ratio
35 Int_t fCounter; //! counter for calls
05118fd5 36
37 ClassDef(AliMergeCombi,1)
38};
39
40#endif // ALIMERGECOMBI_H
41