ATLAS Offline Software
natomsHandler.h
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration
3 */
4 
5 #ifndef natomsHandler_H
6 #define natomsHandler_H
7 
9 #include <string>
10 
11 class natomsHandler:public XMLHandler {
12 public:
13  natomsHandler(const std::string&,
14  AGDDController& c);
15  virtual void ElementHandle(AGDDController& c,
16  xercesc::DOMNode *t) override;
17  std::vector<int> GetNatoms();
18 private:
19  std::vector<int> m_natoms;
20 };
21 
22 #endif
natomsHandler::m_natoms
std::vector< int > m_natoms
Definition: natomsHandler.h:19
read_hist_ntuple.t
t
Definition: read_hist_ntuple.py:5
XMLHandler.h
AGDDController
Definition: AGDDController.h:30
natomsHandler::natomsHandler
natomsHandler(const std::string &, AGDDController &c)
Definition: natomsHandler.cxx:8
natomsHandler
Definition: natomsHandler.h:11
natomsHandler::GetNatoms
std::vector< int > GetNatoms()
Definition: natomsHandler.cxx:23
XMLHandler
Definition: XMLHandler.h:15
python.compressB64.c
def c
Definition: compressB64.py:93
natomsHandler::ElementHandle
virtual void ElementHandle(AGDDController &c, xercesc::DOMNode *t) override
Definition: natomsHandler.cxx:14