@@ -124,14 +124,22 @@ class FairRun : public TNamed
124124 /* *Create a new file and save the TGeoManager to it*/
125125 void CreateGeometryFile (const char * geofile);
126126
127- // ** Set if RunInfo file should be written */
128- void SetWriteRunInfoFile (Bool_t write);
127+ /* *
128+ * Set if RunInfo file should be written
129+ * \deprecated Use SetGenerateRunInfo() instead.
130+ * Deprecated pre-v19, will be removed in v20.
131+ */
132+ [[deprecated]] void SetWriteRunInfoFile (Bool_t write);
129133
130134 // ** Set if RunInfo should be generated */
131135 void SetGenerateRunInfo (Bool_t write) { fGenerateRunInfo = write; }
132136
133- // ** Get info if RunInfo file is written */
134- Bool_t GetWriteRunInfoFile ();
137+ /* *
138+ * Get info if RunInfo file is written
139+ * \deprecated Use \ref IsRunInfoGenerated() instead.
140+ * Deprecated pre-v19, will be removed in v20.
141+ */
142+ [[deprecated]] Bool_t GetWriteRunInfoFile ();
135143
136144 // ** Get info if RunInfo file is written */
137145 Bool_t IsRunInfoGenerated () { return fGenerateRunInfo ; }
@@ -151,21 +159,29 @@ class FairRun : public TNamed
151159 // ** Set option string */
152160 void SetOptions (const TString& s) { fOptions = s; };
153161
154- // vvvvvvvvvv depracted functions, replaced by FairSink vvvvvvvvvv
155162 /* *
156163 * Set the output file name for analysis or simulation
164+ * \deprecated Use \ref FairSink and \ref SetSink().
165+ * Deprecated pre-v19, will be removed in v20.
157166 */
158- virtual void SetOutputFile (const char * fname);
167+ [[deprecated]] virtual void SetOutputFile (const char * fname);
159168 /* *
160169 * Set the output file for analysis or simulation
170+ * \deprecated Use \ref FairSink and \ref SetSink().
171+ * Deprecated pre-v19, will be removed in v20.
161172 */
162- virtual void SetOutputFile (TFile* f);
173+ [[deprecated]] virtual void SetOutputFile (TFile* f);
163174 /* *
164175 * Set the output file name without creating the file
176+ * \deprecated Use \ref FairSink and \ref SetSink().
177+ * Deprecated pre-v19, will be removed in v20.
178+ */
179+ [[deprecated]] void SetOutputFileName (const TString& name);
180+ /* *
181+ * \deprecated Use \ref FairSink and \ref SetSink().
182+ * Deprecated pre-v19, will be removed in v20.
165183 */
166- void SetOutputFileName (const TString& name);
167- TFile* GetOutputFile ();
168- // ^^^^^^^^^^ depracted functions, replaced by FairSink ^^^^^^^^^^
184+ [[deprecated]] TFile* GetOutputFile ();
169185
170186 /* *
171187 * New functions which allow to postpone creating a new Sink in MT
0 commit comments