src/modules/ROOTObjectReader/ROOTObjectReaderModule.hpp

Definition of ROOT data file reader module. More…

Namespaces

Name
allpix
Helper class to hold support layers for a detector model.

Classes

Name
class allpix::ROOTObjectReaderModule
Module to read data stored in ROOT file back to allpix messages.

Detailed Description

Definition of ROOT data file reader module.

Copyright: Copyright (c) 2017-2024 CERN and the Allpix Squared authors. This software is distributed under the terms of the MIT License, copied verbatim in the file “LICENSE.md”. In applying this license, CERN does not waive the privileges and immunities granted to it by virtue of its status as an Intergovernmental Organization or submit itself to any jurisdiction. SPDX-License-Identifier: MIT

Source code


#include <functional>
#include <map>
#include <string>

#include <TFile.h>
#include <TTree.h>

#include "core/config/Configuration.hpp"
#include "core/geometry/GeometryManager.hpp"
#include "core/messenger/Messenger.hpp"
#include "core/module/Event.hpp"
#include "core/module/Module.hpp"

// Contains tuple of all defined objects
#include "objects/objects.h"

namespace allpix {
    class ROOTObjectReaderModule : public Module {
    public:
        using MessageCreatorMap =
            std::map<std::type_index,
                     std::function<std::shared_ptr<BaseMessage>(std::vector<Object*>, std::shared_ptr<Detector>)>>;

        ROOTObjectReaderModule(Configuration& config, Messenger* messenger, GeometryManager* geo_mgr);
        ~ROOTObjectReaderModule() override;

        void initialize() override;

        void run(Event*) override;

        void finalize() override;

    private:
        Messenger* messenger_;
        GeometryManager* geo_mgr_;

        struct message_info {
            std::vector<Object*>* objects;
            std::shared_ptr<Detector> detector;
            std::string name;
            std::shared_ptr<BaseMessage> message;
        };

        // Object names to include or exclude from reading
        std::set<std::string> include_;
        std::set<std::string> exclude_;

        // File containing the objects
        std::unique_ptr<TFile> input_file_;

        // Object trees in the file
        std::vector<TTree*> trees_;

        // List of objects and message information converted from the trees
        std::list<message_info> message_info_array_;

        // Statistics for total amount of objects stored
        std::atomic<unsigned long> read_cnt_{};

        // Internal map to construct an object from it's type index
        MessageCreatorMap message_creator_map_;
    };
} // namespace allpix

Updated on 2025-02-27 at 14:14:46 +0000