ATLAS Offline Software
CaloClusterMomentStore_p1.h
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
3 */
4 
5 //Dear emacs, this is -*-c++-*-
6 #ifndef CALOATHENAPOOL_CALOCLUSTERMOMENTSTORE_P1_H
7 #define CALOATHENAPOOL_CALOCLUSTERMOMENTSTORE_P1_H
8 #include <vector>
9 
11 public:
12  //Dummy default constructor
13  //CaloClusterMomentStore() {}
14 
15  struct ClusterMoment {
16  short key;
17  float value;
18  };
19  std::vector<ClusterMoment> m_store;
20 };
21 
22 #endif
23 
24 
25 /*Necessary Top-Level Converter:
26 CaloClusterContainer
27 CaloShowerContainer
28 CaloCellLinkContainer
29 CaloTowerContainer (???)
30 */
31 
32 
CaloClusterMomentStore_p1::m_store
std::vector< ClusterMoment > m_store
Definition: CaloClusterMomentStore_p1.h:19
CaloClusterMomentStore_p1::ClusterMoment
Definition: CaloClusterMomentStore_p1.h:15
CaloClusterMomentStore_p1
Definition: CaloClusterMomentStore_p1.h:10
CaloClusterMomentStore_p1::ClusterMoment::key
short key
Definition: CaloClusterMomentStore_p1.h:16
CaloClusterMomentStore_p1::ClusterMoment::value
float value
Definition: CaloClusterMomentStore_p1.h:17