Project
Loading...
Searching...
No Matches
NoiseCalibratorSpec.h
Go to the documentation of this file.
1// Copyright 2019-2020 CERN and copyright holders of ALICE O2.
2// See https://alice-o2.web.cern.ch/copyright for details of the copyright holders.
3// All rights not expressly granted are reserved.
4//
5// This software is distributed under the terms of the GNU General Public
6// License v3 (GPL Version 3), copied verbatim in the file "COPYING".
7//
8// In applying this license CERN does not waive the privileges and immunities
9// granted to it by virtue of its status as an Intergovernmental Organization
10// or submit itself to any jurisdiction.
11
13
14#ifndef O2_ITS_NOISECALIBRATORSPEC
15#define O2_ITS_NOISECALIBRATORSPEC
16
17#include <string>
18#include <TStopwatch.h>
20#include "Framework/Task.h"
23
24//#define TIME_SLOT_CALIBRATION
25#ifdef TIME_SLOT_CALIBRATION
28#else
31#endif
32
33using namespace o2::framework;
34
35namespace o2
36{
37
38namespace its
39{
40
42{
43 public:
47
48 NoiseCalibratorSpec(ProcessingMode md = ProcessingMode::Full, bool useClusters = false, std::shared_ptr<o2::base::GRPGeomRequest> req = {}) : mMode(md), mCCDBRequest(req), mUseClusters(useClusters)
49 {
50 mTimer.Stop();
51 }
52 ~NoiseCalibratorSpec() override = default;
53
54 void init(InitContext& ic) final;
55 void run(ProcessingContext& pc) final;
56 void endOfStream(EndOfStreamContext& ec) final;
57 void finaliseCCDB(ConcreteDataMatcher& matcher, void* obj) final;
59 ProcessingMode getProcessingMode() const { return mMode; }
60
61 private:
62 void addDatabaseEntry(int chip, int row, int col);
63 void sendOutput(DataAllocator& output);
64 void sendAccumulatedMap(DataAllocator& output);
65 void updateTimeDependentParams(ProcessingContext& pc);
66 std::unique_ptr<CALIBRATOR> mCalibrator = nullptr;
67 std::shared_ptr<o2::base::GRPGeomRequest> mCCDBRequest;
68 unsigned int mStrobeCounter = 0;
69 size_t mDataSizeStat = 0;
70 size_t mNClustersProc = 0;
71 int mValidityDays = 3;
72 int mNPartsDone = 0; // number of accumalated parts in Normalization mode
73 bool mUseClusters = false;
74 bool mStopMeOnly = false; // send QuitRequest::Me instead of QuitRequest::All
75 bool mRunStopRequested = false; // flag that run was stopped (ant the last output is sent)
76 bool mInitOnceDone = false; // flag that the CCDB objects which should be fetche once per run are loaded
77 TStopwatch mTimer{};
78 float mNoiseCutIB = -1.;
79 o2::dcs::DCSconfigObject_t mNoiseMapDCS; // noisy pixels to be sent to DCS CCDB
80 std::vector<int>* mConfDBmap{nullptr};
82};
83
86DataProcessorSpec getNoiseCalibratorSpec(bool useClusters, int pmode = 0);
87
88} // namespace its
89} // namespace o2
90
91#endif /* O2_ITS_NOISECALIBRATORSPEC */
Helper for geometry and GRP related CCDB requests.
void output(const std::map< std::string, ChannelStat > &channels)
Definition rawdump.cxx:197
uint32_t col
Definition RawData.h:4
ProcessingMode getProcessingMode() const
NoiseCalibratorSpec(ProcessingMode md=ProcessingMode::Full, bool useClusters=false, std::shared_ptr< o2::base::GRPGeomRequest > req={})
~NoiseCalibratorSpec() override=default
void setProcessingMode(ProcessingMode m)
void run(ProcessingContext &pc) final
void endOfStream(EndOfStreamContext &ec) final
This is invoked whenever we have an EndOfStream event.
void init(InitContext &ic) final
void finaliseCCDB(ConcreteDataMatcher &matcher, void *obj) final
const GLfloat * m
Definition glcorearb.h:4066
std::vector< char > DCSconfigObject_t
Defining PrimaryVertex explicitly as messageable.
Definition TFIDInfo.h:20
DataProcessorSpec getNoiseCalibratorSpec(bool useClusters, int pmode=0)
a couple of static helper functions to create timestamp values for CCDB queries or override obsolete ...
std::vector< int > row