RegionTools.hh

Deil Christoph, 10/11/2012 01:53 PM

Download (441 Bytes)

 
1
#ifndef _REGIONTOOLS_H_
2
#define _REGIONTOOLS_H_
3

    
4
#include <string>
5
#include <stash/Coordinate.hh>
6
#include "Region.hh"
7

    
8

    
9

    
10
namespace Tools {
11

    
12
  Region* StringToRegion (std::string input,
13
                          bool ds9 = false, 
14
                          bool inverted = true);
15
  
16
  Region* DS9ToRegion (std::string input,
17
                       bool inverted = true);
18
  
19
  Region* HESSToRegion (std::string input);
20

    
21
  Double_t ParseAngle(std::string input);
22

    
23
}
24

    
25
#endif /* _REGIONTOOLS_H_ */
26