source: trunk/MagicSoft/Mars/mmuon/MMuonSetup.cc@ 7009

Last change on this file since 7009 was 7009, checked in by meyer, 19 years ago
*** empty log message ***
File size: 2.5 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): Markus Meyer 04/2005 <mailto:meyer@astro.uni-wuerzburg.de>
19!
20! Copyright: MAGIC Software Development, 2000-2005
21!
22!
23\* ======================================================================== */
24
25/////////////////////////////////////////////////////////////////////////////
26//
27// MMuonSetup
28//
29// Storage Container for setup parameter for the muon analysis
30//
31// - margin
32// - ThresholdArcWidth
33// - ThresholdArcPhi
34//
35/////////////////////////////////////////////////////////////////////////////
36#include "MMuonSetup.h"
37
38#include <fstream>
39
40#include "MLog.h"
41
42using namespace std;
43
44ClassImp(MMuonSetup);
45
46// --------------------------------------------------------------------------
47//
48// Default constructor.
49//
50MMuonSetup::MMuonSetup(const char *name, const char *title)
51 : fMargin(0.2), fThresholdArcPhi(30), fThresholdArcWidth(30)
52{
53 fName = name ? name : "MMuonSetup";
54 fTitle = title ? title : "Muon calibration setup parameters";
55}
56
57// --------------------------------------------------------------------------
58//
59// Read the setup from a TEnv, eg:
60// MMuonSetup.Margin: 0.2
61// MMuonSetup.ThresholdArcPhi: 30
62// MMuonSetup.ThresholdArcWidth: 30
63//
64Int_t MMuonSetup::ReadEnv(const TEnv &env, TString prefix, Bool_t print)
65{
66 Bool_t rc = kFALSE;
67 if (IsEnvDefined(env, prefix, "Margin", print))
68 {
69 rc = kTRUE;
70 fMargin = GetEnvValue(env, prefix, "Margin", fMargin);
71 }
72 if (IsEnvDefined(env, prefix, "ThresholdArcPhi", print))
73 {
74 rc = kTRUE;
75 fThresholdArcPhi = GetEnvValue(env, prefix, "ThresholdArcPhi", fThresholdArcPhi);
76 }
77 if (IsEnvDefined(env, prefix, "ThresholdArcWidth", print))
78 {
79 rc = kTRUE;
80 fThresholdArcWidth = GetEnvValue(env, prefix, "ThresholdArcWidth", fThresholdArcWidth);
81 }
82
83 return rc;
84}
Note: See TracBrowser for help on using the repository browser.