Project
Loading...
Searching...
No Matches
MFTAssessmentSpec.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
12#ifndef ALICEO2_MFT_ASSESSMENT_DEVICE_H
13#define ALICEO2_MFT_ASSESSMENT_DEVICE_H
14
16
18#include "Framework/Task.h"
20#include "TStopwatch.h"
22
23using namespace o2::framework;
24
25namespace o2
26{
27namespace mft
28{
29class MFTAssessmentSpec : public Task
30{
31 public:
32 MFTAssessmentSpec(std::shared_ptr<o2::base::GRPGeomRequest> gr, bool useMC, bool processGen, bool finalizeAnalysis = false) : mGGCCDBRequest(gr), mUseMC(useMC), mProcessGen(processGen), mFinalizeAnalysis(finalizeAnalysis){};
33 void init(o2::framework::InitContext& ic) final;
36 void finaliseCCDB(o2::framework::ConcreteDataMatcher& matcher, void* obj) final;
37
38 private:
39 void updateTimeDependentParams(ProcessingContext& pc);
40 void sendOutput(DataAllocator& output);
41 std::unique_ptr<o2::mft::MFTAssessment> mMFTAssessment;
42 std::shared_ptr<o2::base::GRPGeomRequest> mGGCCDBRequest;
43 bool mUseMC = true;
44 bool mProcessGen = false;
45 bool mFinalizeAnalysis = false;
46 enum TimerIDs { SWTot,
47 SWQCAsync,
48 SWTrackables,
49 SWGenerated,
50 SWRecoAndTrue,
51 SWAnalysis,
52 NStopWatches };
53 static constexpr std::string_view TimerName[] = {"Total",
54 "ProcessAsync",
55 "ProcessTrackables",
56 "ProcessGenerated",
57 "ProcessRecoAndTrue",
58 "Analysis"};
59 TStopwatch mTimer[NStopWatches];
60};
61
62DataProcessorSpec getMFTAssessmentSpec(bool useMC, bool useGeom, bool processGen, bool finalizeAnalysis = false);
63
64} // namespace mft
65} // namespace o2
66
67#endif
Helper for geometry and GRP related CCDB requests.
void output(const std::map< std::string, ChannelStat > &channels)
Definition rawdump.cxx:197
Class to perform assessment of MFT.
void endOfStream(o2::framework::EndOfStreamContext &ec) final
This is invoked whenever we have an EndOfStream event.
void run(o2::framework::ProcessingContext &pc) final
void init(o2::framework::InitContext &ic) final
void finaliseCCDB(o2::framework::ConcreteDataMatcher &matcher, void *obj) final
MFTAssessmentSpec(std::shared_ptr< o2::base::GRPGeomRequest > gr, bool useMC, bool processGen, bool finalizeAnalysis=false)
Defining PrimaryVertex explicitly as messageable.
Definition TFIDInfo.h:20
DataProcessorSpec getMFTAssessmentSpec(bool useMC, bool useGeom, bool processGen, bool finalizeAnalysis=false)
a couple of static helper functions to create timestamp values for CCDB queries or override obsolete ...