]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PWGLF/RESONANCES/AliRsnPairDef.cxx
edit to output container arg list from Claude
[u/mrichter/AliRoot.git] / PWGLF / RESONANCES / AliRsnPairDef.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 //
18 //  This class is a simple set of definitions which are used to define a
19 //  decay tree to be studied for a resonance, in terms of the PID and charge
20 //  of its candidate daughters, which in turn determins what kind of objects
21 //  the analysis must take into account.
22 //  This object contains two AliRsnDaughterDef which define a model for each
23 //  of the two expected daughters (see also AliRsnDaughterDef class) plus a
24 //  mass hypothesis for the resonance, which is used for computin quantities
25 //  which need it (like rapidity or Mt), and a PDG code, which is used to
26 //  check for true pairs, when needed. In all other cases, these two additional
27 //  values can be left to their default (meaningless) value.
28 //  Since this object must define a decay channel, the only provided constructor
29 //  allow to set a PID and a charge.
30 //
31 //  authors: A. Pulvirenti (alberto.pulvirenti@ct.infn.it)
32 //           M. Vala (martin.vala@cern.ch)
33 //
34 ////////////////////////////////////////////////////////////////////////////////
35
36 #include "AliLog.h"
37 #include "AliRsnMother.h"
38 #include "AliRsnPairDef.h"
39
40 ClassImp(AliRsnPairDef)
41
42 //_____________________________________________________________________________
43 AliRsnPairDef::AliRsnPairDef() :
44    fMotherMass(0.0),
45    fMotherPDG(0),
46    fDef1(),
47    fDef2()
48 {
49 //
50 // Constructor.
51 // If the two pointers are well initialized, they are used to init the members.
52 //
53 }
54
55 //_____________________________________________________________________________
56 AliRsnPairDef::AliRsnPairDef
57 (EPARTYPE type1, Char_t ch1, EPARTYPE type2, Char_t ch2, Int_t pdg, Double_t mass) :
58    fMotherMass(mass),
59    fMotherPDG(pdg),
60    fDef1(type1, ch1),
61    fDef2(type2, ch2)
62 {
63 //
64 // Constructor.
65 // If the two pointers are well initialized, they are used to init the members.
66 //
67 }
68
69 //_____________________________________________________________________________
70 AliRsnPairDef::AliRsnPairDef
71 (AliRsnDaughter::ESpecies type1, Char_t ch1, AliRsnDaughter::ESpecies type2, Char_t ch2, Int_t pdg, Double_t mass) :
72    fMotherMass(mass),
73    fMotherPDG(pdg),
74    fDef1(type1, ch1),
75    fDef2(type2, ch2)
76 {
77 //
78 // Constructor.
79 // If the two pointers are well initialized, they are used to init the members.
80 //
81 }
82
83 //_____________________________________________________________________________
84 AliRsnPairDef::AliRsnPairDef(const AliRsnPairDef &copy) :
85    TObject(copy),
86    fMotherMass(copy.fMotherMass),
87    fMotherPDG(copy.fMotherPDG),
88    fDef1(copy.fDef1),
89    fDef2(copy.fDef2)
90 {
91 //
92 // Copy constructor with standard behavior
93 //
94 }
95
96 //_____________________________________________________________________________
97 AliRsnPairDef &AliRsnPairDef::operator=(const AliRsnPairDef &copy)
98 {
99 //
100 // Assignment operator with standard behavior.
101 //
102    if (this == &copy)
103       return *this;
104    fMotherMass = copy.fMotherMass;
105    fMotherPDG = copy.fMotherPDG;
106    fDef1 = copy.fDef1;
107    fDef2 = copy.fDef2;
108
109    return (*this);
110 }