]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - PWG2/RESONANCES/AliRsnValue.cxx
Added first version of cut monitoring + style format applied
[u/mrichter/AliRoot.git] / PWG2 / RESONANCES / AliRsnValue.cxx
index e5f6730dbfd32f60181b72110805a7b60f6424cd..806ff2615976bf5b5d162b1911687dcca33028ac 100644 (file)
@@ -66,7 +66,7 @@ AliRsnValue::AliRsnValue(const char *name, AliRsnTarget::ETargetType type) :
 }
 
 //_____________________________________________________________________________
-AliRsnValue::AliRsnValue(const AliRsnValuecopy) :
+AliRsnValue::AliRsnValue(const AliRsnValue &copy) :
    AliRsnTarget(copy),
    fUseMCInfo(copy.fUseMCInfo),
    fComputedValue(copy.fComputedValue),
@@ -79,7 +79,7 @@ AliRsnValue::AliRsnValue(const AliRsnValue& copy) :
 }
 
 //_____________________________________________________________________________
-AliRsnValue& AliRsnValue::operator=(const AliRsnValue& copy)
+AliRsnValue &AliRsnValue::operator=(const AliRsnValue &copy)
 {
 //
 // Assignment operator.
@@ -88,7 +88,7 @@ AliRsnValue& AliRsnValue::operator=(const AliRsnValue& copy)
 
    AliRsnTarget::operator=(copy);
    if (this == &copy)
-     return *this;
+      return *this;
    fUseMCInfo = copy.fUseMCInfo;
    fComputedValue = copy.fComputedValue;
    fBinArray = copy.fBinArray;