Skip to content

Commit 40e4f43

Browse files
committed
...
1 parent fc67bef commit 40e4f43

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

examples/random/fill_basic_distributions.inl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -164,11 +164,11 @@ int main(int argv, char** argc)
164164

165165
hydra::fill_random(data_d , gauss);
166166

167-
/*
167+
168168
std::cout << std::endl<< "Generated data:"<< std::endl;
169169
for(size_t i=0; i<10; ++i)
170170
std::cout << "[" << i << "] :" << data_d[i] << std::endl;
171-
*/
171+
172172

173173
#ifdef _ROOT_AVAILABLE_
174174

@@ -198,7 +198,7 @@ int main(int argv, char** argc)
198198
// filling the container in the device
199199
// and copy back to the host also for the
200200
// other functors
201-
/*
201+
202202
hydra::fill_random(data_d , lognormal);
203203
hydra::copy(data_d , data_h);
204204
for(auto x : data_h) hist_lognormal.Fill( x );
@@ -234,7 +234,7 @@ int main(int argv, char** argc)
234234
hydra::fill_random(data_d , trapezoid);
235235
hydra::copy(data_d , data_h);
236236
for(auto x : data_h) hist_trapezoid.Fill( x );
237-
*/
237+
238238

239239

240240
TApplication *myapp=new TApplication("myapp",0,0);

0 commit comments

Comments
 (0)