Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 #ifndef DDD_DDI_ASSEMBLY_H
0002 #define DDD_DDI_ASSEMBLY_H
0003 
0004 #include <iostream>
0005 #include "Solid.h"
0006 
0007 namespace DDI {
0008 
0009   class Assembly : public Solid {
0010   public:
0011     Assembly();
0012 
0013     double volume() const override { return -1; }
0014 
0015     void stream(std::ostream& os) const override;
0016   };
0017 }  // namespace DDI
0018 
0019 #endif