All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
MedianSurface.h
Go to the documentation of this file.
1 #pragma once
2 
4 
5 #include <vector>
6 
7 namespace ana
8 {
9  class MedianSurface: public Surface
10  {
11  public:
12  MedianSurface(const std::vector<Surface>& throws);
13 
14  void DrawEnsemble(TH2* fc, Color_t color = kGray);
15  void DrawBand(TH2* fc);
16 
17  void SaveTo(TDirectory * dir) const;
18  static std::unique_ptr<MedianSurface> LoadFrom(TDirectory * dir);
19  protected:
20  std::vector<Surface> fThrows;
21 
23  };
24 }
Log-likelihood scan across two parameters.
void DrawBand(TH2 *fc)
std::vector< Surface > fThrows
Definition: MedianSurface.h:20
process_name opflashCryoW ana
void DrawEnsemble(TH2 *fc, Color_t color=kGray)
void SaveTo(TDirectory *dir) const
static std::unique_ptr< MedianSurface > LoadFrom(TDirectory *dir)
tuple dir
Definition: dropbox.py:28
MedianSurface(const std::vector< Surface > &throws)