ROOT logo
/**************************************************************************
 * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
 *                                                                        *
 * Author: The ALICE Off-line Project.                                    *
 * Contributors are mentioned in the code where appropriate.              *
 *                                                                        *
 * Permission to use, copy, modify and distribute this software and its   *
 * documentation strictly for non-commercial purposes is hereby granted   *
 * without fee, provided that the above copyright notice appears in all   *
 * copies and that both the copyright notice and this permission notice   *
 * appear in the supporting documentation. The authors make no claims     *
 * about the suitability of this software for any purpose. It is          *
 * provided "as is" without express or implied warranty.                  *
 **************************************************************************/

/* $Id: AliTRDCalDCSGTUSegment.cxx 18952 2007-06-08 11:36:12Z cblume $ */

///////////////////////////////////////////////////////////////////////////////
//                                                                           //
//  TRD calibration class for TRD DCS GTU parameters                         //
//                                                                           //
///////////////////////////////////////////////////////////////////////////////

#include "AliTRDCalDCSGTUSegment.h"
#include <TObjArray.h>

ClassImp(AliTRDCalDCSGTUSegment)


//_____________________________________________________________________________
AliTRDCalDCSGTUSegment::AliTRDCalDCSGTUSegment()
  :TNamed()
    ,fId(0)
    ,fFromRunNumber(0)
    ,fFromSORFlag(0)
    ,fChild(0)
    ,fTmuArr(new TObjArray(5))
    ,fSmuStackMask(0)
    ,fSmuTracklets(0)
    ,fSmuTracks(0)
    ,fSmuIdelay(0)
    ,fSmuTriggerWindowL1Low(0)
    ,fSmuTriggerWindowL1High(0)
    ,fSmuTriggerWindowL2Low(0)
    ,fSmuTriggerWindowL2High(0)
    ,fSmuTtcEmulatorEnable(0)
    ,fSmuBoardInfo()
{
  //
  // AliTRDCalDCSGTU default constructor
  //
  fTmuArr->SetOwner();


}

//_____________________________________________________________________________
AliTRDCalDCSGTUSegment::AliTRDCalDCSGTUSegment(const char *name, const char *title)
  :TNamed(name,title)
    ,fId(0)
    ,fFromRunNumber(0)
    ,fFromSORFlag(0)
    ,fChild(0)
    ,fTmuArr(new TObjArray(5))
    ,fSmuStackMask(0)
    ,fSmuTracklets(0)
    ,fSmuTracks(0)
    ,fSmuIdelay(0)
    ,fSmuTriggerWindowL1Low(0)
    ,fSmuTriggerWindowL1High(0)
    ,fSmuTriggerWindowL2Low(0)
    ,fSmuTriggerWindowL2High(0)
    ,fSmuTtcEmulatorEnable(0)
    ,fSmuBoardInfo()
{
  //
  // AliTRDCalDCSGTU constructor
  //
}

//_____________________________________________________________________________
AliTRDCalDCSGTUSegment::AliTRDCalDCSGTUSegment(const AliTRDCalDCSGTUSegment&)
  :TNamed("","")
    ,fId(0)
    ,fFromRunNumber(0)
    ,fFromSORFlag(0)
    ,fChild(0)
    ,fTmuArr(new TObjArray(5))
    ,fSmuStackMask(0)
    ,fSmuTracklets(0)
    ,fSmuTracks(0)
    ,fSmuIdelay(0)
    ,fSmuTriggerWindowL1Low(0)
    ,fSmuTriggerWindowL1High(0)
    ,fSmuTriggerWindowL2Low(0)
    ,fSmuTriggerWindowL2High(0)
    ,fSmuTtcEmulatorEnable(0)
    ,fSmuBoardInfo()
{
  //
  // AliTRDCalDCSGTUSegment constructor
  //
}

//_____________________________________________________________________________
AliTRDCalDCSGTUSegment& AliTRDCalDCSGTUSegment::operator=(const AliTRDCalDCSGTUSegment& sh)
{
  //
  // AliTRDCalDCSGTUSegment constructor
  //
  if (&sh == this) return *this;
  
  new (this) AliTRDCalDCSGTUSegment(sh);
  return *this;
}


 AliTRDCalDCSGTUSegment.cxx:1
 AliTRDCalDCSGTUSegment.cxx:2
 AliTRDCalDCSGTUSegment.cxx:3
 AliTRDCalDCSGTUSegment.cxx:4
 AliTRDCalDCSGTUSegment.cxx:5
 AliTRDCalDCSGTUSegment.cxx:6
 AliTRDCalDCSGTUSegment.cxx:7
 AliTRDCalDCSGTUSegment.cxx:8
 AliTRDCalDCSGTUSegment.cxx:9
 AliTRDCalDCSGTUSegment.cxx:10
 AliTRDCalDCSGTUSegment.cxx:11
 AliTRDCalDCSGTUSegment.cxx:12
 AliTRDCalDCSGTUSegment.cxx:13
 AliTRDCalDCSGTUSegment.cxx:14
 AliTRDCalDCSGTUSegment.cxx:15
 AliTRDCalDCSGTUSegment.cxx:16
 AliTRDCalDCSGTUSegment.cxx:17
 AliTRDCalDCSGTUSegment.cxx:18
 AliTRDCalDCSGTUSegment.cxx:19
 AliTRDCalDCSGTUSegment.cxx:20
 AliTRDCalDCSGTUSegment.cxx:21
 AliTRDCalDCSGTUSegment.cxx:22
 AliTRDCalDCSGTUSegment.cxx:23
 AliTRDCalDCSGTUSegment.cxx:24
 AliTRDCalDCSGTUSegment.cxx:25
 AliTRDCalDCSGTUSegment.cxx:26
 AliTRDCalDCSGTUSegment.cxx:27
 AliTRDCalDCSGTUSegment.cxx:28
 AliTRDCalDCSGTUSegment.cxx:29
 AliTRDCalDCSGTUSegment.cxx:30
 AliTRDCalDCSGTUSegment.cxx:31
 AliTRDCalDCSGTUSegment.cxx:32
 AliTRDCalDCSGTUSegment.cxx:33
 AliTRDCalDCSGTUSegment.cxx:34
 AliTRDCalDCSGTUSegment.cxx:35
 AliTRDCalDCSGTUSegment.cxx:36
 AliTRDCalDCSGTUSegment.cxx:37
 AliTRDCalDCSGTUSegment.cxx:38
 AliTRDCalDCSGTUSegment.cxx:39
 AliTRDCalDCSGTUSegment.cxx:40
 AliTRDCalDCSGTUSegment.cxx:41
 AliTRDCalDCSGTUSegment.cxx:42
 AliTRDCalDCSGTUSegment.cxx:43
 AliTRDCalDCSGTUSegment.cxx:44
 AliTRDCalDCSGTUSegment.cxx:45
 AliTRDCalDCSGTUSegment.cxx:46
 AliTRDCalDCSGTUSegment.cxx:47
 AliTRDCalDCSGTUSegment.cxx:48
 AliTRDCalDCSGTUSegment.cxx:49
 AliTRDCalDCSGTUSegment.cxx:50
 AliTRDCalDCSGTUSegment.cxx:51
 AliTRDCalDCSGTUSegment.cxx:52
 AliTRDCalDCSGTUSegment.cxx:53
 AliTRDCalDCSGTUSegment.cxx:54
 AliTRDCalDCSGTUSegment.cxx:55
 AliTRDCalDCSGTUSegment.cxx:56
 AliTRDCalDCSGTUSegment.cxx:57
 AliTRDCalDCSGTUSegment.cxx:58
 AliTRDCalDCSGTUSegment.cxx:59
 AliTRDCalDCSGTUSegment.cxx:60
 AliTRDCalDCSGTUSegment.cxx:61
 AliTRDCalDCSGTUSegment.cxx:62
 AliTRDCalDCSGTUSegment.cxx:63
 AliTRDCalDCSGTUSegment.cxx:64
 AliTRDCalDCSGTUSegment.cxx:65
 AliTRDCalDCSGTUSegment.cxx:66
 AliTRDCalDCSGTUSegment.cxx:67
 AliTRDCalDCSGTUSegment.cxx:68
 AliTRDCalDCSGTUSegment.cxx:69
 AliTRDCalDCSGTUSegment.cxx:70
 AliTRDCalDCSGTUSegment.cxx:71
 AliTRDCalDCSGTUSegment.cxx:72
 AliTRDCalDCSGTUSegment.cxx:73
 AliTRDCalDCSGTUSegment.cxx:74
 AliTRDCalDCSGTUSegment.cxx:75
 AliTRDCalDCSGTUSegment.cxx:76
 AliTRDCalDCSGTUSegment.cxx:77
 AliTRDCalDCSGTUSegment.cxx:78
 AliTRDCalDCSGTUSegment.cxx:79
 AliTRDCalDCSGTUSegment.cxx:80
 AliTRDCalDCSGTUSegment.cxx:81
 AliTRDCalDCSGTUSegment.cxx:82
 AliTRDCalDCSGTUSegment.cxx:83
 AliTRDCalDCSGTUSegment.cxx:84
 AliTRDCalDCSGTUSegment.cxx:85
 AliTRDCalDCSGTUSegment.cxx:86
 AliTRDCalDCSGTUSegment.cxx:87
 AliTRDCalDCSGTUSegment.cxx:88
 AliTRDCalDCSGTUSegment.cxx:89
 AliTRDCalDCSGTUSegment.cxx:90
 AliTRDCalDCSGTUSegment.cxx:91
 AliTRDCalDCSGTUSegment.cxx:92
 AliTRDCalDCSGTUSegment.cxx:93
 AliTRDCalDCSGTUSegment.cxx:94
 AliTRDCalDCSGTUSegment.cxx:95
 AliTRDCalDCSGTUSegment.cxx:96
 AliTRDCalDCSGTUSegment.cxx:97
 AliTRDCalDCSGTUSegment.cxx:98
 AliTRDCalDCSGTUSegment.cxx:99
 AliTRDCalDCSGTUSegment.cxx:100
 AliTRDCalDCSGTUSegment.cxx:101
 AliTRDCalDCSGTUSegment.cxx:102
 AliTRDCalDCSGTUSegment.cxx:103
 AliTRDCalDCSGTUSegment.cxx:104
 AliTRDCalDCSGTUSegment.cxx:105
 AliTRDCalDCSGTUSegment.cxx:106
 AliTRDCalDCSGTUSegment.cxx:107
 AliTRDCalDCSGTUSegment.cxx:108
 AliTRDCalDCSGTUSegment.cxx:109
 AliTRDCalDCSGTUSegment.cxx:110
 AliTRDCalDCSGTUSegment.cxx:111
 AliTRDCalDCSGTUSegment.cxx:112
 AliTRDCalDCSGTUSegment.cxx:113
 AliTRDCalDCSGTUSegment.cxx:114
 AliTRDCalDCSGTUSegment.cxx:115
 AliTRDCalDCSGTUSegment.cxx:116
 AliTRDCalDCSGTUSegment.cxx:117