Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:05:27

0001 #ifndef DETECTOR_DESCRIPTION_EXPANDED_NODES_H
0002 #define DETECTOR_DESCRIPTION_EXPANDED_NODES_H
0003 
0004 // -*- C++ -*-
0005 //
0006 // Package:    DetectorDescription/ExpandedNodes
0007 // Class:      ExpandedNodes
0008 //
0009 /**\class ExpandedNodes
0010 
0011  Description: ExpandedNodes extra attributes: tags, offsets
0012               and copy numbers
0013 
0014  Implementation:
0015      ExpandedNodes structure to keep the nodes history
0016 */
0017 //
0018 // Original Author:  Ianna Osborne
0019 //         Created:  Tue, 18 Mar 2019 12:22:35 CET
0020 //
0021 //
0022 #include <vector>
0023 
0024 namespace cms {
0025 
0026   struct ExpandedNodes {
0027     std::vector<double> tags;
0028     std::vector<double> offsets;
0029     std::vector<int> copyNos;
0030   };
0031 }  // namespace cms
0032 
0033 #endif