ExpandedNodes

Macros

Line Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
#ifndef DETECTOR_DESCRIPTION_EXPANDED_NODES_H
#define DETECTOR_DESCRIPTION_EXPANDED_NODES_H

// -*- C++ -*-
//
// Package:    DetectorDescription/ExpandedNodes
// Class:      ExpandedNodes
//
/**\class ExpandedNodes

 Description: ExpandedNodes extra attributes: tags, offsets
              and copy numbers

 Implementation:
     ExpandedNodes structure to keep the nodes history
*/
//
// Original Author:  Ianna Osborne
//         Created:  Tue, 18 Mar 2019 12:22:35 CET
//
//
#include <vector>

namespace cms {

  struct ExpandedNodes {
    std::vector<double> tags;
    std::vector<double> offsets;
    std::vector<int> copyNos;
  };
}  // namespace cms

#endif