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

Last change on this file since 1491 was 1489, checked in by tbretz, 23 years ago
*** empty log message ***
File size: 4.8 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
57#include "MLog.h"
58#include "MLogManip.h"
59
60#include "MSrcPosCam.h"
61
62ClassImp(MHillasSrc);
63
64// --------------------------------------------------------------------------
65//
66// Default constructor.
67//
68MHillasSrc::MHillasSrc(const char *name, const char *title)
69{
70 fName = name ? name : "MHillasSrc";
71 fTitle = title ? title : "Parameters depending in source position";
72}
73
74void MHillasSrc::Reset()
75{
76 fDist = -1;
77 fAlpha = 0;
78 fHeadTail = 0;
79 fCosDeltaAlpha = 0;
80}
81
82// --------------------------------------------------------------------------
83//
84// Calculation of source-dependent parameters
85// In case you don't call Calc from within an eventloop make sure, that
86// you call the Reset member function before.
87//
88Bool_t MHillasSrc::Calc(const MHillas *hillas)
89{
90 fHillas = hillas;
91
92 const Double_t mx = GetMeanX(); // [mm]
93 const Double_t my = GetMeanY(); // [mm]
94
95 const Double_t sx = mx - fSrcPos->GetX(); // [mm]
96 const Double_t sy = my - fSrcPos->GetY(); // [mm]
97
98 const Double_t sd = sin(GetDelta()); // [1]
99 const Double_t cd = cos(GetDelta()); // [1]
100
101 const Double_t tand = tan(GetDelta()); // [1]
102
103 fHeadTail = cd*sx + sd*sy; // [mm]
104
105 //
106 // Distance from source position to center of ellipse.
107 // If the distance is 0 distance, Alpha is not specified.
108 // The calculation has failed and returnes kFALSE.
109 //
110 Double_t dist = sqrt(sx*sx + sy*sy); // [mm]
111
112 if (dist==0)
113 {
114 *fLog << warn << GetDescriptor() << ": Event has Dist==0... skipped." << endl;
115 return kFALSE;
116 }
117
118 //
119 // Calculate Alpha and Cosda = cos(d,a)
120 // The sign of Cosda will be used for quantities containing
121 // a head-tail information
122 //
123 const Double_t arg = (sy-tand*sx) / (dist*sqrt(tand*tand+1));
124
125 fAlpha = asin(arg)*kRad2Deg; // [deg]
126 fCosDeltaAlpha = fHeadTail/dist; // [1]
127 fDist = dist; // [mm]
128
129 SetReadyToSave();
130
131 return kTRUE;
132}
133
134void MHillasSrc::Print(Option_t *) const
135{
136 *fLog << all;
137 *fLog << "Source dependant Image Parameters (" << GetName() << ")" << endl;
138 *fLog << " - Dist [mm] = " << fDist << endl;
139 *fLog << " - Alpha [deg] = " << fAlpha << endl;
140 *fLog << " - HeadTail [mm] = " << fHeadTail << endl;
141 *fLog << " - CosDeltaAlpha = " << fCosDeltaAlpha << endl;
142}
143
144// -----------------------------------------------------------------------
145//
146// overloaded MParContainer to read MHillasSrc from an ascii file
147//
148/*
149void MHillasSrc::AsciiRead(ifstream &fin)
150{
151 fin >> fAlpha;
152 fin >> fDist;
153 fin >> fHeadTail;
154}
155*/
156// -----------------------------------------------------------------------
157//
158// overloaded MParContainer to write MHillasSrc to an ascii file
159/*
160void MHillasSrc::AsciiWrite(ofstream &fout) const
161{
162 fout << fAlpha << " " << fDist;
163}
164*/
Note: See TracBrowser for help on using the repository browser.