]> git.uio.no Git - u/mrichter/AliRoot.git/blame - STEER/AliAODPid.cxx
More corrections in return code (trying to make the return code of the GRP private...
[u/mrichter/AliRoot.git] / STEER / AliAODPid.cxx
CommitLineData
1c28d174 1/**************************************************************************
2 * Copyright(c) 1998-2007, 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/* $Id$ */
17
18//-------------------------------------------------------------------------
19// AOD Pid class to store additional pid information
20// Author: Markus Oldenburg, CERN
21//-------------------------------------------------------------------------
22
23#include "AliAODPid.h"
24
25ClassImp(AliAODPid)
26
27//______________________________________________________________________________
28 AliAODPid::AliAODPid()
29{
30 // default constructor
31}
32
33//______________________________________________________________________________
34AliAODPid::~AliAODPid()
35{
36 // destructor
37}
38
39
40//______________________________________________________________________________
41AliAODPid::AliAODPid(const AliAODPid& pid) :
42 TObject(pid)
43{
44 // Copy constructor
45}
46
47//______________________________________________________________________________
48AliAODPid& AliAODPid::operator=(const AliAODPid& pid)
49{
50 // Assignment operator
51 if(this!=&pid) {
52 // copy stuff
53 }
54
55 return *this;
56}