Skip to content
Snippets Groups Projects
Commit 1f3f40ef authored by Martin Errenst's avatar Martin Errenst
Browse files

Comment out deprecation attribute in THistSvc.h

parent 831bc7a1
No related branches found
No related tags found
No related merge requests found
This commit is part of merge request !594. Comments created here will be created in the context of that merge request.
......@@ -53,8 +53,8 @@ public:
StatusCode regHist( const std::string& name, std::unique_ptr<TH1> hist, TH1* hist_ptr ) override;
/// @deprecated {Just for compatibility purposes. Ownership should be clearly managed.}
/// Register an existing ROOT histogram TH*X with name and pointer
[[deprecated( "Use regHist( name, std::move(hist) ) with std::unique_ptr<TH1> hist" )]] StatusCode
regHist( const std::string& name, TH1* ) override;
//[[deprecated( "Use regHist( name, std::move(hist) ) with std::unique_ptr<TH1> hist" )]]
StatusCode regHist( const std::string& name, TH1* ) override;
/// Return histogram with given name as TH1*, THistSvcMT still owns object.
StatusCode getHist( const std::string& name, TH1*&, size_t index = 0 ) const override;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment