CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_1/src/CondFormats/GeometryObjects/interface/PGeometricDetExtra.h

Go to the documentation of this file.
00001 #ifndef CondFormats_PGeometricDetExtra_h
00002 #define CondFormats_PGeometricDetExtra_h
00003 
00004 #include <vector>
00005 #include <string>
00006 
00007 class PGeometricDetExtra{
00008 
00009  public:
00010   PGeometricDetExtra() { };
00011   ~PGeometricDetExtra() { };
00012 
00013   struct Item{  
00014     int _geographicalId; // to be converted to DetId
00015     //  std::vector< DDExpandedNode > _parents; DO NOT SAVE!
00016     //GeoHistory _parents;
00017     double _volume;
00018     double _density;
00019     double _weight;
00020     int    _copy;
00021     std::string _material;
00022   };
00023 
00024   std::vector<Item> pgdes_;
00025 
00026 };
00027 
00028 #endif
00029