-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[RF] More member initialization in class declarations in RooFit
- Loading branch information
1 parent
a113110
commit 36c8584
Showing
60 changed files
with
247 additions
and
416 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,8 +4,7 @@ | |
* File: $Id: RooKeysPdf.h,v 1.10 2007/05/11 09:13:07 verkerke Exp $ | ||
* Authors: * | ||
* GR, Gerhard Raven, UC San Diego, [email protected] * | ||
* DK, David Kirkby, UC Irvine, [email protected] * | ||
* WV, Wouter Verkerke, UC Santa Barbara, [email protected] * | ||
* DK, David Kirkby, UC Irvine, [email protected] * WV, Wouter Verkerke, UC Santa Barbara, [email protected] * | ||
* * | ||
* Copyright (c) 2000-2005, Regents of the University of California * | ||
* and Stanford University. All rights reserved. * | ||
|
@@ -57,19 +56,21 @@ class RooKeysPdf : public RooAbsPdf { | |
// machine precision | ||
static const double _nSigma; //! | ||
|
||
Int_t _nEvents; | ||
double *_dataPts; //[_nEvents] | ||
double *_dataWgts; //[_nEvents] | ||
double *_weights; //[_nEvents] | ||
double _sumWgt ; | ||
Int_t _nEvents = 0; | ||
double *_dataPts = nullptr; //[_nEvents] | ||
double *_dataWgts = nullptr; //[_nEvents] | ||
double *_weights = nullptr; //[_nEvents] | ||
double _sumWgt = 0.0; | ||
|
||
constexpr static int _nPoints{1000}; | ||
double _lookupTable[_nPoints+1]; | ||
|
||
double g(double x,double sigma) const; | ||
|
||
bool _mirrorLeft, _mirrorRight; | ||
bool _asymLeft, _asymRight; | ||
bool _mirrorLeft = false; | ||
bool _mirrorRight = false; | ||
bool _asymLeft = false; | ||
bool _asymRight = false; | ||
|
||
// cached info on variable | ||
Char_t _varName[128]; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.