Belle II Software  release-06-01-15
FixECLClustersModule.h
1 /**************************************************************************
2  * basf2 (Belle II Analysis Software Framework) *
3  * Author: The Belle II Collaboration *
4  * *
5  * See git log for contributors and copyright holders. *
6  * This file is licensed under LGPL-3.0, see LICENSE.md. *
7  **************************************************************************/
8 
9 #pragma once
10 
11 #include <framework/core/Module.h>
12 #include <framework/datastore/StoreArray.h>
13 #include <mdst/dataobjects/ECLCluster.h>
14 
15 
16 namespace Belle2 {
36  class FixECLClustersModule : public Module {
37 
38  public:
39 
44 
46  virtual void initialize() override;
47 
49  virtual void event() override;
50 
51 
52  private:
53 
55  };
57 }
58 
Sets ConnectedRegionID and ClusterID to ECLClusters on MC samples with old ECLCluster design.
virtual void initialize() override
Register input and output data.
virtual void event() override
Event function.
FixECLClustersModule()
Constructor: Sets the description, the properties and the parameters of the module.
StoreArray< ECLCluster > m_eclClusters
Reconstructed ECLClusters.
Base class for Modules.
Definition: Module.h:72
Accessor to arrays stored in the data store.
Definition: StoreArray.h:113
Abstract base class for different kinds of events.