]> git.uio.no Git - u/mrichter/AliRoot.git/blob - STEER/AliMergeCombi.cxx
Cleaning includes
[u/mrichter/AliRoot.git] / STEER / AliMergeCombi.cxx
1 /**************************************************************************
2  * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
3  *                                                                        *
4  * Author: The ALICE Off-line Project.                                    *
5  * Contributors are mentioned in the code where appropriate.              *
6  *                                                                        *
7  * Permission to use, copy, modify and distribute this software and its   *
8  * documentation strictly for non-commercial purposes is hereby granted   *
9  * without fee, provided that the above copyright notice appears in all   *
10  * copies and that both the copyright notice and this permission notice   *
11  * appear in the supporting documentation. The authors make no claims     *
12  * about the suitability of this software for any purpose. It is          *
13  * provided "as is" without express or implied warranty.                  *
14  **************************************************************************/
15
16 /*
17 $Log$
18 Revision 1.2  2001/10/04 15:50:23  jchudoba
19 Implement non default combination
20
21 Revision 1.1  2001/09/19 06:22:13  jchudoba
22 Class to generate combinations for merging
23
24 */
25
26 ////////////////////////////////////////////////////////////////////////
27 //
28 // AliMergeCombi.cxx
29 //
30 // returns combinations of input event numbers
31 //
32 ////////////////////////////////////////////////////////////////////////
33
34 #include "AliMergeCombi.h"
35
36 ClassImp(AliMergeCombi)
37
38 //_______________________________________________________________________
39 AliMergeCombi::AliMergeCombi():
40   fDim(1),
41   fSperb(1),
42   fCounter(0)
43 {
44   //
45   // default ctor
46   //
47 }
48
49 //_______________________________________________________________________
50 AliMergeCombi::AliMergeCombi(Int_t dim, Int_t sperb):
51   fDim(dim),
52   fSperb(sperb),
53   fCounter(0)
54 {
55   //
56   // Standard ctor
57   //
58 }
59
60 //_______________________________________________________________________
61 AliMergeCombi::~AliMergeCombi()
62 {
63   // default dtor
64 }
65
66 //_______________________________________________________________________
67 Bool_t AliMergeCombi::Combination(Int_t /* evNumber */ [], Int_t delta[])
68 {
69   delta[0] = 1;
70   for (Int_t i=1; i<fDim; i++) {
71     if (fCounter%fSperb == 0) {
72       delta[i] = 1;
73     } else {
74       delta[i] = 0;
75     }
76     fCounter++;
77   }      
78   return kTRUE;
79 }