Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2024-09-27 07:03:26

0001 // SPDX-License-Identifier: LGPL-3.0-or-later
0002 // Copyright (C) 2023 Christopher Dilks
0003 
0004 // Implement Histos payload for Adage
0005 #pragma once
0006 
0007 #include <adage/Adage.h>
0008 #include "Histos.h"
0009 
0010 class HistosDAG : public Adage<Histos>
0011 {
0012   public:
0013     HistosDAG() : Adage<Histos>("histos") {};
0014     ~HistosDAG() {};
0015 
0016     // build the DAG from specified bin scheme
0017     void Build(std::map<TString,BinSet*> binSchemes) override;
0018 
0019   ClassDefOverride(HistosDAG,1);
0020 };