// $Id: CartesianFocalPlane.cc,v 1.2 2005/03/21 17:42:08 thea Exp $
// Author: Alessandro Thea 2005/02/17
/*****************************************************************************
* ESAF: Euso Simulation and Analysis Framework *
* *
* Id: CartesianFocalPlane *
* Package: <packagename> *
* Coordinator: <coordinator> *
* *
*****************************************************************************/
//_____________________________________________________________________________
//
// CartesianFocalPlane
//
// <extensive class description>
//
// Config file parameters
// ======================
//
// <parameter name>: <parameter description>
// -Valid options: <available options>
//
#include "CartesianFocalPlane.hh"
ClassImp(CartesianFocalPlane)
//_____________________________________________________________________________
CartesianFocalPlane::CartesianFocalPlane() {
//
// Constructor
//
fPos = EVector(0,0,Conf()->GetNum("CartesianFocalPlane.fPos.Z"))*mm;
fDZup = 0;
fDZdown = Conf()->GetNum("CartesianFocalPlane.fDZdown")*mm;
fR = Conf()->GetNum("CartesianFocalPlane.fRadius")*mm;
}
//_____________________________________________________________________________
CartesianFocalPlane::~CartesianFocalPlane() {
//
// Destructor
//
}