CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
OptOScreen.h
Go to the documentation of this file.
1 // COCOA class header file
2 //Id: OptOScreen.h
3 //CAT: Model
4 //
5 // Base class to describe Optical Objects of type sensor 2D
6 //
7 // History: v1.0
8 // Pedro Arce
9 
10 #ifndef _OPTOSCREEN_HH
11 #define _OPTOSCREEN_HH
12 
15 class Measurement;
16 class LightRay;
17 
19 {
20 
21 public:
22  //---------- Constructors / Destructor
23  OptOScreen(){ };
24  OptOScreen(OpticalObject* parent, const ALIstring& type, const ALIstring& name, const ALIbool copy_data) :
25  OpticalObject( parent, type, name, copy_data){ };
27 
28  //---------- defaultBehaviour: do nothing
29  virtual void defaultBehaviour( LightRay& lightray, Measurement& meas );
30 #ifdef COCOA_VIS
31  virtual void fillVRML();
32  virtual void fillIguana();
33 #endif
34  void constructSolidShape();
35 
36 };
37 
38 #endif
39 
type
Definition: HCALResponse.h:21
virtual void fillVRML()
Definition: OpticalObject.h:55
bool ALIbool
Definition: CocoaGlobals.h:19
const OpticalObject * parent() const
Definition: OpticalObject.h:62
virtual void defaultBehaviour(LightRay &lightray, Measurement &meas)
Definition: OptOScreen.cc:23
virtual void fillIguana()
Definition: OpticalObject.h:56
void constructSolidShape()
Definition: OptOScreen.cc:54
Measurement * meas()
std::string ALIstring
Definition: CocoaGlobals.h:9
const ALIstring & name() const
Definition: OpticalObject.h:60
OptOScreen(OpticalObject *parent, const ALIstring &type, const ALIstring &name, const ALIbool copy_data)
Definition: OptOScreen.h:24