/* This file is part of MAUS: http://micewww.pp.rl.ac.uk:8080/projects/maus
*
* MAUS is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* MAUS is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with MAUS. If not, see .
*
*/
#ifndef _SRC_COMMON_CPP_DATASTRUCTURE_SCIFIHELICALPRTRACK_HH_
#define _SRC_COMMON_CPP_DATASTRUCTURE_SCIFIHELICALPRTRACK_HH_
// C++ headers
#include
// ROOT headers
#include "TRefArray.h"
// MAUS headers
#include "src/common_cpp/Utils/VersionNumber.hh"
#include "src/common_cpp/DataStructure/SciFiSpacePoint.hh"
#include "src/common_cpp/DataStructure/SciFiBasePRTrack.hh"
#include "src/common_cpp/DataStructure/ThreeVector.hh"
#include "src/common_cpp/Recon/SciFi/SimpleHelix.hh"
#include "src/common_cpp/Recon/SciFi/SimpleLine.hh"
#include "src/common_cpp/Recon/SciFi/SimpleCircle.hh"
namespace MAUS {
/** @class SciFiHelicalPRTrack
* @author A. Dobbs
* @brief Class representing helical tracks in the tracker formed by pattern recognition
*/
class SciFiHelicalPRTrack : public SciFiBasePRTrack {
public:
/** Default constructor */
SciFiHelicalPRTrack();
/** @brief Constructor from SimpleCircle and SimpleLine
*
* Constructor from SimpleCircle and SimpleLine, without explicit chi squared setting
* @param tracker The tracker number
* @param charge The track charge
* @param pos0 Intercept of helix with tracker reference surface
* @param phi0 Initial turning angle
* @param circle SimpleCircle class used to construct track
* @param line_sz SimpleLine class used to construct track
* @param point_spread Not implemented
* @param phi The spacepoint turning angles
* @param spoints Pointers to the associated spacepoints
* @param covariance Covariances of the fits
*/
SciFiHelicalPRTrack(int tracker, int charge, ThreeVector pos0, double phi0,
SimpleCircle circle, SimpleLine line_sz, double point_spread,
DoubleArray phi, SciFiSpacePointPArray spoints,
const DoubleArray& covariance);
/** Copy constructor - any pointers are deep copied */
SciFiHelicalPRTrack(const SciFiHelicalPRTrack &_htrk);
/** Destructors */
virtual ~SciFiHelicalPRTrack();
/** Assignment operator - any pointers are deep copied */
SciFiHelicalPRTrack& operator=(const SciFiHelicalPRTrack &_htrk);
/** Combine the different chi sqs into one final value */
virtual void form_total_chi_squared();
/** Get the vector the turning angles of the spacepoints used by the track */
DoubleArray get_phi() const { return _phi; }
/** Set the vector the turning angles of the spacepoints used by the track */
void set_phi(DoubleArray phi) { _phi = phi; }
/** Get the tracker number */
int get_tracker() const { return _tracker; }
/** Set the tracker number */
void set_tracker(int tracker) { _tracker = tracker; }
/** Get the position of the intercept of the track with the tracker ref surface */
ThreeVector get_pos0() const { return _pos0; }
/** Set the position of the intercept of the track with the tracker ref surface */
void set_pos0(ThreeVector pos0) { _pos0 = pos0; }
/** Get phi0, angle between the helix centre & the rotated frame origin in x-y */
double get_phi0() const { return _phi0; }
/** Get phi0, angle between the helix centre & the rotated frame origin in x-y */
void set_phi0(double phi0) { _phi0 = phi0; }
/** Get dsdz, the slope in the s-z plane (s is path length) */
double get_dsdz() const { return _dsdz; }
/** Set dsdz, the slope in the s-z plane (s is path length) */
void set_dsdz(double dsdz) { _dsdz = dsdz; }
/** Get R the radius of the helix in the x-y plane */
double get_R() const { return _R; }
/** Set R the radius of the helix in the x-y plane */
void set_R(double R) { _R = R; }
/** Get the intercept of the straight line fit in s-z */
double get_line_sz_c() const { return _line_sz_c; }
/** Set the intercept of the straight line fit in s-z */
void set_line_sz_c(double line_sz_c) { _line_sz_c = line_sz_c; }
/** Get the chi^2 of the straight line fit in s-z */
double get_line_sz_chisq() const { return _line_sz_chisq; }
/** Set the chi^2 of the straight line fit in s-z */
void set_line_sz_chisq(double line_sz_chisq) { _line_sz_chisq = line_sz_chisq; }
/** Get the x coordinate of the centre of the circle */
double get_circle_x0() const { return _circle_x0; }
/** Set the x coordinate of the centre of the circle */
void set_circle_x0(double circle_x0) { _circle_x0 = circle_x0; }
/** Get the y coordinate of the centre of the circle */
double get_circle_y0() const { return _circle_y0; }
/** Set the y coordinate of the centre of the circle */
void set_circle_y0(double circle_y0) { _circle_y0 = circle_y0; }
/** Get the chi^2 of the circle fit in x-y */
double get_circle_chisq() const { return _circle_chisq; }
/** Set the chi^2 of the circle fit in x-y */
void set_circle_chisq(double circle_chisq) { _circle_chisq = circle_chisq; }
/** Get the point spread (summed separations) in x - y of the seed spacepoints */
double get_point_spread() const { return _point_spread; }
/** Set the point spread (summed separations) in x - y of the seed spacepoints */
void set_point_spread(double point_spread) { _point_spread = point_spread; }
/** Get the track type, for straight, 1 for helical */
int get_type() const { return _type; }
private:
int _tracker; /** Tracker number, 0 for upstream, 1 for downstream */
static const int _type = 1; /** Track type identifier, 0 for straight, 1 for helical */
double _R; /** Radius of the track fit */
double _phi0; /** Initial turning angle [radians]. Confusing, to be removed. */
double _dsdz; /** Gradient of the s-z fit in tracker local coordinates */
double _line_sz_c; /** Intercept of the s-z fit in tracker local coordinates */
double _line_sz_chisq; /** ChiSq of the s-z fit */
double _circle_x0; /** x coordo f the circle centre in tracker local coordinates */
double _circle_y0; /** y coord of the circle centre in tracker local coordinates */
double _circle_chisq; /** ChiSq of the circle (x-y) fit */
double _point_spread; /** Not implemented */
ThreeVector _pos0; /** Intercept of helix with tracker reference surface, not implemented */
DoubleArray _phi; /** The turning angles of the spacepoints [radians] */
MAUS_VERSIONED_CLASS_DEF(SciFiHelicalPRTrack)
};
typedef std::vector SciFiHelicalPRTrackPArray;
typedef std::vector SciFiHelicalPRTrackArray;
} // ~namespace MAUS
#endif