Skip to content

Commit 2b96fa1

Browse files
author
jryu
committed
Address ITS stuck-pixel review comments
1 parent 0e1c898 commit 2b96fa1

2 files changed

Lines changed: 7 additions & 5 deletions

File tree

DataFormats/Detectors/ITSMFT/common/src/ITSMFTDataFormatsLinkDef.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
#pragma link C++ class o2::itsmft::Digit + ;
2424
#pragma link C++ class o2::itsmft::NoiseMap + ;
2525
#pragma link C++ class o2::itsmft::TimeDeadMap + ;
26+
#pragma link C++ class o2::itsmft::StuckPixelData + ;
2627
#pragma link C++ class std::vector < o2::itsmft::Digit> + ;
2728

2829
#pragma link C++ class o2::itsmft::GBTCalibData + ;

Detectors/ITSMFT/common/workflow/include/ITSMFTWorkflow/DeadMapBuilderSpec.h

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@
4343

4444
#include <ITSMFTReconstruction/RawPixelDecoder.h> //o2::itsmft::RawPixelDecoder
4545
#include "DataFormatsITSMFT/TimeDeadMap.h"
46+
#include "DataFormatsITSMFT/StuckPixelData.h"
4647
#include "DetectorsCalibration/Utils.h"
4748
#include "DetectorsCommonDataFormats/FileMetaData.h"
4849
#include "DetectorsBase/GRPGeomHelper.h"
@@ -132,19 +133,19 @@ class ITSMFTDeadMapBuilder : public Task
132133

133134
// Flag to avoid that endOfStream and stop are both done
134135
bool isEnded = false;
135-
<<<<<<< HEAD
136-
=======
137136

137+
// Stuck pixel related members
138+
bool mDoStuckPixels = false;
138139
std::string mStuckPixelFileName = "";
140+
o2::itsmft::StuckPixelData mStuckPixelData;
139141

140-
TTree* mErrorTree = nullptr;
141142
Long64_t mErrOrbit = 0;
142143
UShort_t mErrChipID = 0;
143144
UShort_t mErrRow = 0;
144145
UShort_t mErrCol = 0;
145-
>>>>>>> 5df4d36ff6 (Add ITS stuck-pixel CCDB object output)
146+
146147
};
147-
6
148+
148149
// Create a processor spec
149150
o2::framework::DataProcessorSpec getITSMFTDeadMapBuilderSpec(std::string datasource, bool doMFT);
150151

0 commit comments

Comments
 (0)