Skip to content
Snippets Groups Projects
UnpackChain.h 541 B
/* Copyright (C) 2023 FIAS Frankfurt Institute for Advanced Studies, Frankfurt / Main
   SPDX-License-Identifier: GPL-3.0-only
   Authors: Felix Weiglhofer [committer] */
#ifndef CBM_ALGO_UNPACK_UNPACKCHAIN_H
#define CBM_ALGO_UNPACK_UNPACKCHAIN_H

#include "SubChain.h"
#include "Unpack.h"

namespace cbm::algo
{

  class UnpackChain : public SubChain {

  public:
    void Init();

    Unpack::resultType Run(const fles::Timeslice&);

  private:
    Unpack fUnpack;
  };

}  // namespace cbm::algo


#endif  //CBM_ALGO_UNPACK_UNPACKCHAIN_H