Name
            TAU_PROFILE_TIMER_SET_GROUP — Change the group of a timer
          
         
            Synopsis
            C/C++:
                  
                     | TAU_PROFILE_TIMER_SET_GROUP( | timer, |  | 
                  
                     |  | group ); |  | 
               
               
                  
                     | Profiler | timer; | 
                  
                     | TauGroup_t | group; | 
               
             
         Description
             TAU_PROFILE_TIMER_SET_GROUP changes the group
                   associated with a timer.
            
         Example
            C/C++ :
void foo() {
  TAU_PROFILE_TIMER(t, "foo loop timer", " ", TAU_USER1);
  ...
  TAU_PROFILE_TIMER_SET_GROUP(t, TAU_USER3);
}