1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
|
//----------Author's Names: FX Gentit, B.Fabbro DSM/IRFU/SPP CEA-Saclay
//----------Copyright:Those valid for CEA sofware
//----------Modified:30/09/2011
#include "CalibCalorimetry/EcalCorrelatedNoiseAnalysisAlgos/interface/TEcnaRootFile.h"
#include "Riostream.h"
//--------------------------------------
// TEcnaRootFile.cc
// Class creation: 03 Dec 2002
// Documentation: see TEcnaRootFile.h
//--------------------------------------
TEcnaRootFile *gCnaRootFile = nullptr;
ClassImp(TEcnaRootFile);
//___________________________________________________________________________
//
// Reading of the ROOT file written by TEcnaRunEB
//
TEcnaRootFile::TEcnaRootFile() {
//constructor without arguments
// std::cout << "[Info Management] CLASS: TEcnaRootFile. CREATE OBJECT: this = " << this << std::endl;
Init();
}
TEcnaRootFile::TEcnaRootFile(TEcnaObject *pObjectManager, const Text_t *name, const TString &status) {
//constructor
// std::cout << "[Info Management] CLASS: TEcnaRootFile. CREATE OBJECT: this = " << this << std::endl;
Init();
Long_t i_this = (Long_t)this;
pObjectManager->RegisterPointer("TEcnaRootFile", i_this);
fRootFileName = name;
fRootFileStatus = status;
}
TEcnaRootFile::TEcnaRootFile(TEcnaObject *pObjectManager, const Text_t *name) {
//constructor
// std::cout << "[Info Management] CLASS: TEcnaRootFile. CREATE OBJECT: this = " << this << std::endl;
Init();
Long_t i_this = (Long_t)this;
pObjectManager->RegisterPointer("TEcnaRootFile", i_this);
fRootFileName = name;
fRootFileStatus = "READ";
}
TEcnaRootFile::TEcnaRootFile(const Text_t *name, const TString &status) {
//constructor
// std::cout << "[Info Management] CLASS: TEcnaRootFile. CREATE OBJECT: this = " << this << std::endl;
Init();
fRootFileName = name;
fRootFileStatus = status;
}
TEcnaRootFile::TEcnaRootFile(const Text_t *name) {
//constructor
// std::cout << "[Info Management] CLASS: TEcnaRootFile. CREATE OBJECT: this = " << this << std::endl;
Init();
fRootFileName = name;
fRootFileStatus = "READ";
}
TEcnaRootFile::~TEcnaRootFile() {
//destructor
//std::cout << "[Info Management] CLASS: TEcnaRootFile. DESTROY OBJECT: this = " << this << std::endl;
if (fCnaIndivResult != nullptr) {
delete fCnaIndivResult;
}
}
void TEcnaRootFile::Init() {
//Set default values in all variables
TString sEmpty = "";
fRootFileName = sEmpty.Data();
fRootFileStatus = sEmpty.Data();
fRootFile = nullptr;
fCounterBytesCnaResults = 0;
fNbEntries = 0;
fCnaResultsTree = nullptr;
fCnaResultsBranch = nullptr;
fCnaIndivResult = nullptr;
}
void TEcnaRootFile::ReStart(const Text_t *name) {
// Set default values + fRootFileName + fRootFileStatus
Init();
fRootFileName = name;
fRootFileStatus = "READ";
}
void TEcnaRootFile::ReStart(const Text_t *name, const TString &status) {
// Set default values + fRootFileName + fRootFileStatus
Init();
fRootFileName = name;
fRootFileStatus = status;
}
void TEcnaRootFile::CloseFile() {
//Close the CNA root file for reading
if (fRootFile != nullptr) {
fRootFile->Close();
delete fRootFile;
fRootFile = nullptr;
}
fCounterBytesCnaResults = 0;
fCnaResultsTree = nullptr;
fCnaResultsBranch = nullptr;
}
Bool_t TEcnaRootFile::OpenR(const Text_t *name) {
//Open the CNA root file for reading
Bool_t ok;
TString sEmpty = "";
if (name != sEmpty) {
fRootFileName = name;
}
if (fRootFile == nullptr) {
fRootFile = new TFile(fRootFileName.Data(), "READ");
}
ok = fRootFile->IsOpen();
if (ok) {
fCnaResultsTree = (TTree *)fRootFile->Get("CNAResults");
if (fCnaResultsTree) {
if (fCnaIndivResult == nullptr) {
fCnaIndivResult = new TEcnaResultType();
}
fCnaResultsBranch = fCnaResultsTree->GetBranch("Results");
fCnaResultsBranch->SetAddress(&fCnaIndivResult);
fNbEntries = (Int_t)fCnaResultsTree->GetEntries();
} else
ok = kFALSE;
}
return ok;
}
Bool_t TEcnaRootFile::OpenW(const Text_t *name) {
//Open root file for writing
Bool_t ok = kTRUE;
TString sEmpty = "";
if (name != sEmpty) {
fRootFileName = name;
}
if (fRootFile == nullptr) {
fRootFile = new TFile(fRootFileName.Data(), "RECREATE");
}
if (fRootFile) {
fCnaResultsTree = new TTree("CNAResults", "CNAResults");
fCnaIndivResult = new TEcnaResultType();
fCnaResultsBranch = fCnaResultsTree->Branch("Results", "TEcnaResultType", &fCnaIndivResult, 64000, 0);
} else
ok = kFALSE;
return ok;
}
Bool_t TEcnaRootFile::ReadElement(Int_t i) {
//Read element i
Bool_t ok = kTRUE;
fCounterBytesCnaResults += fCnaResultsTree->GetEntry(i);
return ok;
}
Bool_t TEcnaRootFile::ReadElement(CnaResultTyp typ, Int_t k) {
//Look for kth element of type typ
Bool_t ok = kFALSE;
Int_t i = 0;
do {
fCounterBytesCnaResults += fCnaResultsTree->GetEntry(i);
ok = ((fCnaIndivResult->fIthElement == k) && (fCnaIndivResult->fTypOfCnaResult == typ));
i++;
} while ((i < fNbEntries) && (!ok));
return ok;
}
Int_t TEcnaRootFile::ReadElementNextEntryNumber(CnaResultTyp typ, Int_t k) {
//Look for kth element of type typ and return the next entry number
Bool_t ok = kFALSE;
Int_t i = 0;
do {
fCounterBytesCnaResults += fCnaResultsTree->GetEntry(i);
ok = ((fCnaIndivResult->fIthElement == k) && (fCnaIndivResult->fTypOfCnaResult == typ));
i++;
} while ((i < fNbEntries) && (!ok));
if (ok == kFALSE) {
i = -1;
}
return i;
}
|