Line data Source code
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 :
19 :
20 :
21 :
22 : Author: R. GUERNANE LPSC Grenoble CNRS/IN2P3
23 : */
24 :
25 : #include "AliEMCALTriggerDCSConfig.h"
26 : #include "AliEMCALTriggerSTUDCSConfig.h"
27 : #include "AliEMCALTriggerTRUDCSConfig.h"
28 :
29 42 : ClassImp(AliEMCALTriggerDCSConfig)
30 :
31 : //_____________________________________________________________________________
32 2 : AliEMCALTriggerDCSConfig::AliEMCALTriggerDCSConfig() : TObject()
33 2 : ,fTRUArr(0x0)
34 2 : ,fSTUObj(0x0)
35 2 : ,fSTUDCAL(0x0)
36 10 : {
37 : //
38 : // AliEMCALTriggerDCSConfig default constructor
39 : //
40 : /*
41 : fTRUArr = new TClonesArray("AliEMCALTriggerTRUDCSConfig",62);
42 : fSTUObj = new AliEMCALTriggerSTUDCSConfig();
43 : */
44 4 : }
45 :
46 : //_____________________________________________________________________________
47 : AliEMCALTriggerDCSConfig::~AliEMCALTriggerDCSConfig()
48 0 : {
49 : //
50 : // Dtor
51 : //
52 :
53 0 : delete fTRUArr; fTRUArr = 0x0;
54 0 : delete fSTUObj; fSTUObj = 0x0;
55 0 : }
|