source: trunk/MagicSoft/Mars/manalysis/MHillasSrc.cc@ 1640

Last change on this file since 1640 was 1540, checked in by tbretz, 22 years ago
*** empty log message ***
File size: 5.4 KB
Line 
1/* ======================================================================== *\
2!
3! *
4! * This file is part of MARS, the MAGIC Analysis and Reconstruction
5! * Software. It is distributed to you in the hope that it can be a useful
6! * and timesaving tool in analysing Data of imaging Cerenkov telescopes.
7! * It is distributed WITHOUT ANY WARRANTY.
8! *
9! * Permission to use, copy, modify and distribute this software and its
10! * documentation for any purpose is hereby granted without fee,
11! * provided that the above copyright notice appear in all copies and
12! * that both that copyright notice and this permission notice appear
13! * in supporting documentation. It is provided "as is" without express
14! * or implied warranty.
15! *
16!
17!
18! Author(s): Thomas Bretz 12/2000 <mailto:tbretz@uni-sw.gwdg.de>
19! Author(s): Harald Kornmayer 1/2001
20! Author(s): Rudolf Bock 10/2001 <mailto:Rudolf.Bock@cern.ch>
21! Author(s): Wolfgang Wittek 06/2002 <mailto:wittek@mppmu.mpg.de>
22!
23! Copyright: MAGIC Software Development, 2000-2002
24!
25!
26\* ======================================================================== */
27
28/////////////////////////////////////////////////////////////////////////////
29//
30// MHillasSrc
31//
32// Storage Container for image parameters
33//
34// source-dependent image parameters
35//
36// Version 1:
37// ----------
38// fAlpha angle between major axis and line source-to-center
39// fDist distance from source to center of ellipse
40//
41// Version 2:
42// ----------
43// fHeadTail
44//
45// Version 3:
46// ----------
47// fCosDeltaLenth cosine of angle between d and a, where
48// - d is the vector from the source position to the
49// center of the ellipse
50// - a is a vector along the main axis of the ellipse
51//
52/////////////////////////////////////////////////////////////////////////////
53#include "MHillasSrc.h"
54
55#include <fstream.h>
56#include <TArrayF.h>
57
58#include "MLog.h"
59#include "MLogManip.h"
60
61#include "MSrcPosCam.h"
62
63ClassImp(MHillasSrc);
64
65// --------------------------------------------------------------------------
66//
67// Default constructor.
68//
69MHillasSrc::MHillasSrc(const char *name, const char *title)
70{
71 fName = name ? name : "MHillasSrc";
72 fTitle = title ? title : "Parameters depending in source position";
73}
74
75void MHillasSrc::Reset()
76{
77 fDist = -1;
78 fAlpha = 0;
79 fHeadTail = 0;
80 fCosDeltaAlpha = 0;
81}
82
83// --------------------------------------------------------------------------
84//
85// Calculation of source-dependent parameters
86// In case you don't call Calc from within an eventloop make sure, that
87// you call the Reset member function before.
88//
89Bool_t MHillasSrc::Calc(const MHillas *hillas)
90{
91 fHillas = hillas;
92
93 const Double_t mx = GetMeanX(); // [mm]
94 const Double_t my = GetMeanY(); // [mm]
95
96 const Double_t sx = mx - fSrcPos->GetX(); // [mm]
97 const Double_t sy = my - fSrcPos->GetY(); // [mm]
98
99 const Double_t sd = sin(GetDelta()); // [1]
100 const Double_t cd = cos(GetDelta()); // [1]
101
102 const Double_t tand = tan(GetDelta()); // [1]
103
104 fHeadTail = cd*sx + sd*sy; // [mm]
105
106 //
107 // Distance from source position to center of ellipse.
108 // If the distance is 0 distance, Alpha is not specified.
109 // The calculation has failed and returnes kFALSE.
110 //
111 Double_t dist = sqrt(sx*sx + sy*sy); // [mm]
112
113 if (dist==0)
114 {
115 //*fLog << warn << GetDescriptor() << ": Event has Dist==0... skipped." << endl;
116 return kFALSE;
117 }
118
119 //
120 // Calculate Alpha and Cosda = cos(d,a)
121 // The sign of Cosda will be used for quantities containing
122 // a head-tail information
123 //
124 const Double_t arg = (sy-tand*sx) / (dist*sqrt(tand*tand+1));
125
126 fAlpha = asin(arg)*kRad2Deg; // [deg]
127 fCosDeltaAlpha = fHeadTail/dist; // [1]
128 fDist = dist; // [mm]
129
130 SetReadyToSave();
131
132 return kTRUE;
133}
134
135void MHillasSrc::Print(Option_t *) const
136{
137 *fLog << all;
138 *fLog << "Source dependant Image Parameters (" << GetName() << ")" << endl;
139 *fLog << " - Dist [mm] = " << fDist << endl;
140 *fLog << " - Alpha [deg] = " << fAlpha << endl;
141 *fLog << " - HeadTail [mm] = " << fHeadTail << endl;
142 *fLog << " - CosDeltaAlpha = " << fCosDeltaAlpha << endl;
143}
144// --------------------------------------------------------------------------
145//
146// This function is ment for special usage, please never try to set
147// values via this function
148//
149void MHillasSrc::Set(const TArrayF &arr)
150{
151 if (arr.GetSize() != 4)
152 return;
153
154 fAlpha = arr.At(0); // [deg] angle of major axis with vector to src
155 fDist = arr.At(1); // [mm] distance between src and center of ellipse
156 fHeadTail = arr.At(2); // [mm]
157 fCosDeltaAlpha = arr.At(3); // [1] cosine of angle between d and a
158}
159
160// -----------------------------------------------------------------------
161//
162// overloaded MParContainer to read MHillasSrc from an ascii file
163//
164/*
165void MHillasSrc::AsciiRead(ifstream &fin)
166{
167 fin >> fAlpha;
168 fin >> fDist;
169 fin >> fHeadTail;
170}
171*/
172// -----------------------------------------------------------------------
173//
174// overloaded MParContainer to write MHillasSrc to an ascii file
175/*
176void MHillasSrc::AsciiWrite(ofstream &fout) const
177{
178 fout << fAlpha << " " << fDist;
179}
180*/
Note: See TracBrowser for help on using the repository browser.